diff options
| author | Joseph Warner <hardolaf@hardolaf.com> | 2013-06-20 21:55:25 -0400 |
|---|---|---|
| committer | Joseph Warner <hardolaf@hardolaf.com> | 2013-06-20 21:56:01 -0400 |
| commit | 24825b9dc8cd94204da4180a044dbeab563d5563 (patch) | |
| tree | fb7b3b945b477d0b550dff6f345a8d18b713da95 /phpBB/config | |
| parent | 6601c3d64e7a3a57a6c956ee0eba19523b04e52f (diff) | |
| download | forums-24825b9dc8cd94204da4180a044dbeab563d5563.tar forums-24825b9dc8cd94204da4180a044dbeab563d5563.tar.gz forums-24825b9dc8cd94204da4180a044dbeab563d5563.tar.bz2 forums-24825b9dc8cd94204da4180a044dbeab563d5563.tar.xz forums-24825b9dc8cd94204da4180a044dbeab563d5563.zip | |
[feature/auth-refactor] Turn provider_db into a service
Removes globals from provider_db and turns it into a service.
PHPBB3-9734
Diffstat (limited to 'phpBB/config')
| -rw-r--r-- | phpBB/config/auth_providers.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/phpBB/config/auth_providers.yml b/phpBB/config/auth_providers.yml index 0baad47661..e702ec665a 100644 --- a/phpBB/config/auth_providers.yml +++ b/phpBB/config/auth_providers.yml @@ -1 +1,18 @@ services: + auth.provider.db: + class: phpbb_auth_provider_db + arguments: + - @dbal.conn + - @config + - @request + - @user + - %core.root_path% + - %core.php_ext% + auth.provider.apache: + class: phpbb_auth_provider_apache + arguments: + + auth.provider.ldap: + class: phpbb_auth_provider_ldap + arguments: + |
