diff options
author | Andreas Gohr <andi@splitbrain.org> | 2023-08-30 15:44:19 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2023-08-30 15:44:19 +0200 |
commit | 8553d24d33ab5f260c6e19959de764dd8472d438 (patch) | |
tree | bc7595a8bb7ce06ca07116216e89394721be6af8 /lib/plugins/authplain/auth.php | |
parent | a0aeafaa2be80428767dc89e2f806edd8de8c981 (diff) | |
download | dokuwiki-8553d24d33ab5f260c6e19959de764dd8472d438.tar.gz dokuwiki-8553d24d33ab5f260c6e19959de764dd8472d438.zip |
Apply rector renames
Diffstat (limited to 'lib/plugins/authplain/auth.php')
-rw-r--r-- | lib/plugins/authplain/auth.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/plugins/authplain/auth.php b/lib/plugins/authplain/auth.php index 8cfe35115..14e5ce716 100644 --- a/lib/plugins/authplain/auth.php +++ b/lib/plugins/authplain/auth.php @@ -1,5 +1,6 @@ <?php +use dokuwiki\Extension\AuthPlugin; use dokuwiki\Logger; use dokuwiki\Utf8\Sort; @@ -11,7 +12,7 @@ use dokuwiki\Utf8\Sort; * @author Chris Smith <chris@jalakai.co.uk> * @author Jan Schumann <js@schumann-it.com> */ -class auth_plugin_authplain extends DokuWiki_Auth_Plugin +class auth_plugin_authplain extends AuthPlugin { /** @var array user cache */ protected $users; |