1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-09-03 13:23:06 +02:00

[ticket/13740] Use service collection instead of array of task names

PHPBB3-13740
This commit is contained in:
Mate Bartus
2015-07-09 15:26:48 +02:00
parent 794726a464
commit 62103cec30
14 changed files with 221 additions and 242 deletions

View File

@@ -8,9 +8,20 @@ services:
- @installer.helper.iohandler
- %core.root_path%
- %core.php_ext%
tags:
- { name: install_filesystem_install, order: 1 }
installer.module.install_filesystem_collection:
class: phpbb\di\ordered_service_collection
arguments:
- @service_container
tags:
- { name: service_collection, tag: install_filesystem_install }
installer.module.filesystem_install:
class: phpbb\install\module\install_filesystem\module
parent: installer.module_base
arguments:
- ["installer.install_filesystem.create_config_file"]
- @installer.module.install_filesystem_collection
tags:
- { name: installer_install_module, order: 3 }