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/installer/container/services_update_requirements.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/installer/container/services_update_requirements.yml')
| -rw-r--r-- | phpBB/config/installer/container/services_update_requirements.yml | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/phpBB/config/installer/container/services_update_requirements.yml b/phpBB/config/installer/container/services_update_requirements.yml index ebb1bea409..c5272ef549 100644 --- a/phpBB/config/installer/container/services_update_requirements.yml +++ b/phpBB/config/installer/container/services_update_requirements.yml @@ -2,10 +2,10 @@ services: installer.requirements.check_filesystem_update: class: phpbb\install\module\requirements\task\check_filesystem arguments: - - @filesystem - - @installer.helper.iohandler - - %core.root_path% - - %core.php_ext% + - '@filesystem' + - '@installer.helper.iohandler' + - '%core.root_path%' + - '%core.php_ext%' - false tags: - { name: update_requirements, order: 10 } @@ -13,19 +13,19 @@ services: installer.requirements.update_requirements: class: phpbb\install\module\requirements\task\check_update arguments: - - @installer.helper.container_factory - - @filesystem - - @installer.helper.iohandler - - @installer.helper.update_helper - - %core.root_path% - - %core.php_ext% + - '@installer.helper.container_factory' + - '@filesystem' + - '@installer.helper.iohandler' + - '@installer.helper.update_helper' + - '%core.root_path%' + - '%core.php_ext%' tags: - { name: update_requirements, order: 30 } installer.module.update_requirements_collection: class: phpbb\di\ordered_service_collection arguments: - - @service_container + - '@service_container' tags: - { name: service_collection, tag: update_requirements, class_name_aware: true } @@ -33,7 +33,7 @@ services: class: phpbb\install\module\requirements\update_module parent: installer.module_base arguments: - - @installer.module.update_requirements_collection + - '@installer.module.update_requirements_collection' - true - false tags: |
