aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/config/default/container/services_attachment.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_attachment.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_attachment.yml')
-rw-r--r--phpBB/config/default/container/services_attachment.yml40
1 files changed, 20 insertions, 20 deletions
diff --git a/phpBB/config/default/container/services_attachment.yml b/phpBB/config/default/container/services_attachment.yml
index 5506b2ec90..f448367473 100644
--- a/phpBB/config/default/container/services_attachment.yml
+++ b/phpBB/config/default/container/services_attachment.yml
@@ -3,38 +3,38 @@ services:
class: phpbb\attachment\delete
scope: prototype
arguments:
- - @config
- - @dbal.conn
- - @dispatcher
- - @filesystem
- - @attachment.resync
- - %core.root_path%
+ - '@config'
+ - '@dbal.conn'
+ - '@dispatcher'
+ - '@filesystem'
+ - '@attachment.resync'
+ - '%core.root_path%'
attachment.manager:
class: phpbb\attachment\manager
scope: prototype
arguments:
- - @attachment.delete
- - @attachment.resync
- - @attachment.upload
+ - '@attachment.delete'
+ - '@attachment.resync'
+ - '@attachment.upload'
attachment.resync:
class: phpbb\attachment\resync
scope: prototype
arguments:
- - @dbal.conn
+ - '@dbal.conn'
attachment.upload:
class: phpbb\attachment\upload
scope: prototype
arguments:
- - @auth
- - @cache
- - @config
- - @files.upload
- - @language
- - @mimetype.guesser
- - @dispatcher
- - @plupload
- - @user
- - %core.root_path%
+ - '@auth'
+ - '@cache'
+ - '@config'
+ - '@files.upload'
+ - '@language'
+ - '@mimetype.guesser'
+ - '@dispatcher'
+ - '@plupload'
+ - '@user'
+ - '%core.root_path%'