diff options
Diffstat (limited to '_test/mock/AuthCaseInsensitivePlugin.php')
-rw-r--r-- | _test/mock/AuthCaseInsensitivePlugin.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/_test/mock/AuthCaseInsensitivePlugin.php b/_test/mock/AuthCaseInsensitivePlugin.php new file mode 100644 index 000000000..cf71c0c8c --- /dev/null +++ b/_test/mock/AuthCaseInsensitivePlugin.php @@ -0,0 +1,12 @@ +<?php + +namespace dokuwiki\test\mock; + +/** + * Class dokuwiki\Plugin\DokuWiki_Auth_Plugin + */ +class AuthCaseInsensitivePlugin extends AuthPlugin { + function isCaseSensitive(){ + return false; + } +}
\ No newline at end of file |