1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-13 11:06:03 +02:00

[feature/auth-refactor] Remove implements on classes extending base

PHPBB3-9734
This commit is contained in:
Joseph Warner 2013-07-11 11:09:25 -04:00
parent 69c1b1aea8
commit 021eb083ab
3 changed files with 1 additions and 4 deletions

View File

@ -21,7 +21,6 @@ if (!defined('IN_PHPBB'))
* @package auth * @package auth
*/ */
class phpbb_auth_provider_apache extends phpbb_auth_provider_base class phpbb_auth_provider_apache extends phpbb_auth_provider_base
implements phpbb_auth_provider_interface
{ {
/** /**
* Apache Authentication Constructor * Apache Authentication Constructor

View File

@ -23,7 +23,6 @@ if (!defined('IN_PHPBB'))
* @package auth * @package auth
*/ */
class phpbb_auth_provider_db extends phpbb_auth_provider_base class phpbb_auth_provider_db extends phpbb_auth_provider_base
implements phpbb_auth_provider_interface
{ {
/** /**

View File

@ -23,7 +23,6 @@ if (!defined('IN_PHPBB'))
* @package auth * @package auth
*/ */
class phpbb_auth_provider_ldap extends phpbb_auth_provider_base class phpbb_auth_provider_ldap extends phpbb_auth_provider_base
implements phpbb_auth_provider_interface
{ {
/** /**
* LDAP Authentication Constructor * LDAP Authentication Constructor