From 89461d982c3356f5389caaae7bec1fa76fbe6beb Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Sat, 23 Jul 2016 16:23:42 +0200 Subject: [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 --- phpBB/config/default/container/services_auth.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'phpBB/config') 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 } -- cgit v1.2.1