aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/config/installer/container/services_install_data.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/installer/container/services_install_data.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/installer/container/services_install_data.yml')
-rw-r--r--phpBB/config/installer/container/services_install_data.yml26
1 files changed, 13 insertions, 13 deletions
diff --git a/phpBB/config/installer/container/services_install_data.yml b/phpBB/config/installer/container/services_install_data.yml
index ea5b5a2c52..d119ba6ebb 100644
--- a/phpBB/config/installer/container/services_install_data.yml
+++ b/phpBB/config/installer/container/services_install_data.yml
@@ -2,36 +2,36 @@ services:
installer.install_data.add_bots:
class: phpbb\install\module\install_data\task\add_bots
arguments:
- - @installer.helper.config
- - @installer.helper.iohandler
- - @installer.helper.container_factory
- - @language
- - %core.root_path%
- - %core.php_ext%
+ - '@installer.helper.config'
+ - '@installer.helper.iohandler'
+ - '@installer.helper.container_factory'
+ - '@language'
+ - '%core.root_path%'
+ - '%core.php_ext%'
tags:
- { name: install_data_install, order: 20 }
installer.install_data.add_languages:
class: phpbb\install\module\install_data\task\add_languages
arguments:
- - @installer.helper.iohandler
- - @installer.helper.container_factory
- - @language.helper.language_file
+ - '@installer.helper.iohandler'
+ - '@installer.helper.container_factory'
+ - '@language.helper.language_file'
tags:
- { name: install_data_install, order: 10 }
installer.install_data.add_modules:
class: phpbb\install\module\install_data\task\add_modules
arguments:
- - @installer.helper.iohandler
- - @installer.helper.container_factory
+ - '@installer.helper.iohandler'
+ - '@installer.helper.container_factory'
tags:
- { name: install_data_install, order: 30 }
installer.module.data_install_collection:
class: phpbb\di\ordered_service_collection
arguments:
- - @service_container
+ - '@service_container'
tags:
- { name: service_collection, tag: install_data_install, class_name_aware: true }
@@ -39,6 +39,6 @@ services:
class: phpbb\install\module\install_data\module
parent: installer.module_base
arguments:
- - @installer.module.data_install_collection
+ - '@installer.module.data_install_collection'
tags:
- { name: installer_install_module, order: 50 }