mirror of
https://github.com/phpbb/phpbb.git
synced 2025-09-03 13:23:06 +02:00
[ticket/14247] Use quotes around @ and % strings in YAML
PHPBB3-14247
This commit is contained in:
@@ -2,43 +2,43 @@ services:
|
||||
installer.obtain_data.update_options:
|
||||
class: phpbb\install\module\obtain_data\task\obtain_update_settings
|
||||
arguments:
|
||||
- @installer.helper.config
|
||||
- @installer.helper.iohandler
|
||||
- '@installer.helper.config'
|
||||
- '@installer.helper.iohandler'
|
||||
tags:
|
||||
- { name: update_obtain_data, order: 10 }
|
||||
|
||||
installer.obtain_data.file_updater_method:
|
||||
class: phpbb\install\module\obtain_data\task\obtain_file_updater_method
|
||||
arguments:
|
||||
- @installer.helper.config
|
||||
- @installer.helper.iohandler
|
||||
- '@installer.helper.config'
|
||||
- '@installer.helper.iohandler'
|
||||
tags:
|
||||
- { name: update_obtain_data, order: 20 }
|
||||
|
||||
installer.obtain_data.update_files:
|
||||
class: phpbb\install\module\obtain_data\task\obtain_update_files
|
||||
arguments:
|
||||
- @installer.helper.config
|
||||
- @installer.helper.iohandler
|
||||
- %core.root_path%
|
||||
- %core.php_ext%
|
||||
- '@installer.helper.config'
|
||||
- '@installer.helper.iohandler'
|
||||
- '%core.root_path%'
|
||||
- '%core.php_ext%'
|
||||
tags:
|
||||
- { name: update_obtain_data, order: 30 }
|
||||
|
||||
installer.obtain_data.update_ftp_settings:
|
||||
class: phpbb\install\module\obtain_data\task\obtain_update_ftp_data
|
||||
arguments:
|
||||
- @installer.helper.config
|
||||
- @installer.helper.iohandler
|
||||
- @installer.helper.update_helper
|
||||
- %core.php_ext%
|
||||
- '@installer.helper.config'
|
||||
- '@installer.helper.iohandler'
|
||||
- '@installer.helper.update_helper'
|
||||
- '%core.php_ext%'
|
||||
tags:
|
||||
- { name: update_obtain_data, order: 40 }
|
||||
|
||||
installer.module.update_obtain_data_collection:
|
||||
class: phpbb\di\ordered_service_collection
|
||||
arguments:
|
||||
- @service_container
|
||||
- '@service_container'
|
||||
tags:
|
||||
- { name: service_collection, tag: update_obtain_data, class_name_aware: true }
|
||||
|
||||
@@ -46,7 +46,7 @@ services:
|
||||
class: phpbb\install\module\obtain_data\update_module
|
||||
parent: installer.module_base
|
||||
arguments:
|
||||
- @installer.module.update_obtain_data_collection
|
||||
- '@installer.module.update_obtain_data_collection'
|
||||
- true
|
||||
- false
|
||||
tags:
|
||||
|
Reference in New Issue
Block a user