1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-09-02 21:02:41 +02:00

[ticket/14247] Use quotes around @ and % strings in YAML

PHPBB3-14247
This commit is contained in:
Matt Friedman
2015-12-07 13:11:22 -08:00
parent f14a9b7069
commit d9d89cad94
52 changed files with 1120 additions and 1120 deletions

View File

@@ -2,37 +2,37 @@ services:
installer.file_updater.factory:
class: phpbb\install\helper\file_updater\factory
arguments:
- @installer.file_updater.collection
- '@installer.file_updater.collection'
installer.file_updater.collection:
class: phpbb\di\service_collection
arguments:
- @service_container
- '@service_container'
tags:
- { name: service_collection, tag: file_updater }
installer.file_updater.compress:
class: phpbb\install\helper\file_updater\compression_file_updater
arguments:
- @installer.helper.update_helper
- %core.root_path%
- %core.php_ext%
- '@installer.helper.update_helper'
- '%core.root_path%'
- '%core.php_ext%'
tags:
- { name: file_updater }
installer.file_updater.ftp:
class: phpbb\install\helper\file_updater\ftp_file_updater
arguments:
- @installer.helper.update_helper
- %core.root_path%
- %core.php_ext%
- '@installer.helper.update_helper'
- '%core.root_path%'
- '%core.php_ext%'
tags:
- { name: file_updater }
installer.file_updater.file:
class: phpbb\install\helper\file_updater\file_updater
arguments:
- @filesystem
- %core.root_path%
- '@filesystem'
- '%core.root_path%'
tags:
- { name: file_updater }