aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/config/default/container/services_auth.yml
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2016-07-23 16:23:42 +0200
committerMarc Alexander <admin@m-a-styles.de>2016-07-23 16:23:42 +0200
commit89461d982c3356f5389caaae7bec1fa76fbe6beb (patch)
tree7086054b627cc2f801c0b45820c36321d88eef73 /phpBB/config/default/container/services_auth.yml
parent4554c030c09ac938cd4926369ed690ffb2b2f16e (diff)
downloadforums-89461d982c3356f5389caaae7bec1fa76fbe6beb.tar
forums-89461d982c3356f5389caaae7bec1fa76fbe6beb.tar.gz
forums-89461d982c3356f5389caaae7bec1fa76fbe6beb.tar.bz2
forums-89461d982c3356f5389caaae7bec1fa76fbe6beb.tar.xz
forums-89461d982c3356f5389caaae7bec1fa76fbe6beb.zip
[ticket/14717] Quote strings beginning with @ or % in yaml definitions
This type of use was deprecated in symfony 2.8 and will be dropped in 3.x. Also see: https://github.com/symfony/symfony/pull/16285 PHPBB3-14717
Diffstat (limited to 'phpBB/config/default/container/services_auth.yml')
-rw-r--r--phpBB/config/default/container/services_auth.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/config/default/container/services_auth.yml b/phpBB/config/default/container/services_auth.yml
index a0f9fbd8ef..ee6f7ef448 100644
--- a/phpBB/config/default/container/services_auth.yml
+++ b/phpBB/config/default/container/services_auth.yml
@@ -103,7 +103,7 @@ services:
auth.provider.oauth.service.twitter:
class: phpbb\auth\provider\oauth\service\twitter
arguments:
- - @config
- - @request
+ - '@config'
+ - '@request'
tags:
- { name: auth.provider.oauth.service }