diff options
author | Matt Friedman <maf675@gmail.com> | 2015-12-07 13:11:22 -0800 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2015-12-07 13:11:22 -0800 |
commit | d9d89cad94eada62e900a012046b8d45c5aa3129 (patch) | |
tree | 4274286fca6fee80764f95cdd310ecf1080a391e /phpBB/config/default/container/services_migrator.yml | |
parent | f14a9b70694ef1ff575e7db46fdcdec8c9bc87e4 (diff) | |
download | forums-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_migrator.yml')
-rw-r--r-- | phpBB/config/default/container/services_migrator.yml | 50 |
1 files changed, 25 insertions, 25 deletions
diff --git a/phpBB/config/default/container/services_migrator.yml b/phpBB/config/default/container/services_migrator.yml index 01bd7d3a11..c63b087adb 100644 --- a/phpBB/config/default/container/services_migrator.yml +++ b/phpBB/config/default/container/services_migrator.yml @@ -3,16 +3,16 @@ services: migrator: class: phpbb\db\migrator arguments: - - @service_container - - @config - - @dbal.conn - - @dbal.tools - - %tables.migrations% - - %core.root_path% - - %core.php_ext% - - %core.table_prefix% - - @migrator.tool_collection - - @migrator.helper + - '@service_container' + - '@config' + - '@dbal.conn' + - '@dbal.tools' + - '%tables.migrations%' + - '%core.root_path%' + - '%core.php_ext%' + - '%core.table_prefix%' + - '@migrator.tool_collection' + - '@migrator.helper' migrator.helper: class: phpbb\db\migration\helper @@ -21,44 +21,44 @@ services: migrator.tool_collection: class: phpbb\di\service_collection arguments: - - @service_container + - '@service_container' tags: - { name: service_collection, tag: migrator.tool } migrator.tool.config: class: phpbb\db\migration\tool\config arguments: - - @config + - '@config' tags: - { name: migrator.tool } migrator.tool.config_text: class: phpbb\db\migration\tool\config_text arguments: - - @config_text + - '@config_text' tags: - { name: migrator.tool } migrator.tool.module: class: phpbb\db\migration\tool\module arguments: - - @dbal.conn - - @cache - - @user - - @module.manager - - %core.root_path% - - %core.php_ext% - - %tables.modules% + - '@dbal.conn' + - '@cache' + - '@user' + - '@module.manager' + - '%core.root_path%' + - '%core.php_ext%' + - '%tables.modules%' tags: - { name: migrator.tool } migrator.tool.permission: class: phpbb\db\migration\tool\permission arguments: - - @dbal.conn - - @cache - - @auth - - %core.root_path% - - %core.php_ext% + - '@dbal.conn' + - '@cache' + - '@auth' + - '%core.root_path%' + - '%core.php_ext%' tags: - { name: migrator.tool } |