aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/config/default/container/services_auth.yml
diff options
context:
space:
mode:
authorMatt Friedman <maf675@gmail.com>2015-12-07 13:11:22 -0800
committerMatt Friedman <maf675@gmail.com>2015-12-07 13:11:22 -0800
commitd9d89cad94eada62e900a012046b8d45c5aa3129 (patch)
tree4274286fca6fee80764f95cdd310ecf1080a391e /phpBB/config/default/container/services_auth.yml
parentf14a9b70694ef1ff575e7db46fdcdec8c9bc87e4 (diff)
downloadforums-d9d89cad94eada62e900a012046b8d45c5aa3129.tar
forums-d9d89cad94eada62e900a012046b8d45c5aa3129.tar.gz
forums-d9d89cad94eada62e900a012046b8d45c5aa3129.tar.bz2
forums-d9d89cad94eada62e900a012046b8d45c5aa3129.tar.xz
forums-d9d89cad94eada62e900a012046b8d45c5aa3129.zip
[ticket/14247] Use quotes around @ and % strings in YAML
PHPBB3-14247
Diffstat (limited to 'phpBB/config/default/container/services_auth.yml')
-rw-r--r--phpBB/config/default/container/services_auth.yml80
1 files changed, 40 insertions, 40 deletions
diff --git a/phpBB/config/default/container/services_auth.yml b/phpBB/config/default/container/services_auth.yml
index 88a90ca2d6..57c6c73525 100644
--- a/phpBB/config/default/container/services_auth.yml
+++ b/phpBB/config/default/container/services_auth.yml
@@ -7,63 +7,63 @@ services:
auth.provider_collection:
class: phpbb\auth\provider_collection
arguments:
- - @service_container
- - @config
+ - '@service_container'
+ - '@config'
tags:
- { name: service_collection, tag: auth.provider }
auth.provider.db:
class: phpbb\auth\provider\db
arguments:
- - @dbal.conn
- - @config
- - @passwords.manager
- - @request
- - @user
- - @service_container
- - %core.root_path%
- - %core.php_ext%
+ - '@dbal.conn'
+ - '@config'
+ - '@passwords.manager'
+ - '@request'
+ - '@user'
+ - '@service_container'
+ - '%core.root_path%'
+ - '%core.php_ext%'
tags:
- { name: auth.provider }
auth.provider.apache:
class: phpbb\auth\provider\apache
arguments:
- - @dbal.conn
- - @config
- - @passwords.manager
- - @request
- - @user
- - %core.root_path%
- - %core.php_ext%
+ - '@dbal.conn'
+ - '@config'
+ - '@passwords.manager'
+ - '@request'
+ - '@user'
+ - '%core.root_path%'
+ - '%core.php_ext%'
tags:
- { name: auth.provider }
auth.provider.ldap:
class: phpbb\auth\provider\ldap
arguments:
- - @dbal.conn
- - @config
- - @passwords.manager
- - @user
+ - '@dbal.conn'
+ - '@config'
+ - '@passwords.manager'
+ - '@user'
tags:
- { name: auth.provider }
auth.provider.oauth:
class: phpbb\auth\provider\oauth\oauth
arguments:
- - @dbal.conn
- - @config
- - @passwords.manager
- - @request
- - @user
- - %tables.auth_provider_oauth_token_storage%
- - %tables.auth_provider_oauth_account_assoc%
- - @auth.provider.oauth.service_collection
- - %tables.users%
- - @service_container
- - %core.root_path%
- - %core.php_ext%
+ - '@dbal.conn'
+ - '@config'
+ - '@passwords.manager'
+ - '@request'
+ - '@user'
+ - '%tables.auth_provider_oauth_token_storage%'
+ - '%tables.auth_provider_oauth_account_assoc%'
+ - '@auth.provider.oauth.service_collection'
+ - '%tables.users%'
+ - '@service_container'
+ - '%core.root_path%'
+ - '%core.php_ext%'
tags:
- { name: auth.provider }
@@ -71,30 +71,30 @@ services:
auth.provider.oauth.service_collection:
class: phpbb\di\service_collection
arguments:
- - @service_container
+ - '@service_container'
tags:
- { name: service_collection, tag: auth.provider.oauth.service }
auth.provider.oauth.service.bitly:
class: phpbb\auth\provider\oauth\service\bitly
arguments:
- - @config
- - @request
+ - '@config'
+ - '@request'
tags:
- { name: auth.provider.oauth.service }
auth.provider.oauth.service.facebook:
class: phpbb\auth\provider\oauth\service\facebook
arguments:
- - @config
- - @request
+ - '@config'
+ - '@request'
tags:
- { name: auth.provider.oauth.service }
auth.provider.oauth.service.google:
class: phpbb\auth\provider\oauth\service\google
arguments:
- - @config
- - @request
+ - '@config'
+ - '@request'
tags:
- { name: auth.provider.oauth.service }