diff options
author | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-11 11:09:25 -0400 |
---|---|---|
committer | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-11 11:09:45 -0400 |
commit | 021eb083abc1fe11d18d756adf12f72b903b13ed (patch) | |
tree | c180e47e564b31b8cf1278967e2a53bf8407699b | |
parent | 69c1b1aea89f3c705c19d69aab70c35a7d09747a (diff) | |
download | forums-021eb083abc1fe11d18d756adf12f72b903b13ed.tar forums-021eb083abc1fe11d18d756adf12f72b903b13ed.tar.gz forums-021eb083abc1fe11d18d756adf12f72b903b13ed.tar.bz2 forums-021eb083abc1fe11d18d756adf12f72b903b13ed.tar.xz forums-021eb083abc1fe11d18d756adf12f72b903b13ed.zip |
[feature/auth-refactor] Remove implements on classes extending base
PHPBB3-9734
-rw-r--r-- | phpBB/includes/auth/provider/apache.php | 1 | ||||
-rw-r--r-- | phpBB/includes/auth/provider/db.php | 3 | ||||
-rw-r--r-- | phpBB/includes/auth/provider/ldap.php | 1 |
3 files changed, 1 insertions, 4 deletions
diff --git a/phpBB/includes/auth/provider/apache.php b/phpBB/includes/auth/provider/apache.php index e0217725d6..2e80436f78 100644 --- a/phpBB/includes/auth/provider/apache.php +++ b/phpBB/includes/auth/provider/apache.php @@ -21,7 +21,6 @@ if (!defined('IN_PHPBB')) * @package auth */ class phpbb_auth_provider_apache extends phpbb_auth_provider_base - implements phpbb_auth_provider_interface { /** * Apache Authentication Constructor diff --git a/phpBB/includes/auth/provider/db.php b/phpBB/includes/auth/provider/db.php index b9b808cb5d..0934c56d9b 100644 --- a/phpBB/includes/auth/provider/db.php +++ b/phpBB/includes/auth/provider/db.php @@ -22,8 +22,7 @@ if (!defined('IN_PHPBB')) * * @package auth */ -class phpbb_auth_provider_db extends phpbb_auth_provider_base - implements phpbb_auth_provider_interface +class phpbb_auth_provider_db extends phpbb_auth_provider_base { /** diff --git a/phpBB/includes/auth/provider/ldap.php b/phpBB/includes/auth/provider/ldap.php index dbb569f466..e10986abf0 100644 --- a/phpBB/includes/auth/provider/ldap.php +++ b/phpBB/includes/auth/provider/ldap.php @@ -23,7 +23,6 @@ if (!defined('IN_PHPBB')) * @package auth */ class phpbb_auth_provider_ldap extends phpbb_auth_provider_base - implements phpbb_auth_provider_interface { /** * LDAP Authentication Constructor |