1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-09-02 12:53:37 +02:00

[ticket/16643] Refactor installer tasks to use Doctrine DBAL

PHPBB3-16643
This commit is contained in:
Máté Bartus
2021-01-16 11:57:35 +01:00
parent aab2679966
commit 2a57477718
19 changed files with 1102 additions and 676 deletions

View File

@@ -37,7 +37,6 @@ services:
- '@installer.helper.database'
- '@installer.helper.config'
- '@installer.helper.iohandler'
- '@installer.helper.container_factory'
- '@language'
- '%core.root_path%'
tags:
@@ -46,6 +45,7 @@ services:
installer.install_database.add_config_settings:
class: phpbb\install\module\install_database\task\add_config_settings
arguments:
- '@installer.helper.database'
- '@filesystem'
- '@installer.helper.config'
- '@installer.helper.iohandler'
@@ -55,6 +55,17 @@ services:
tags:
- { name: install_database_install, order: 5 }
installer.install_database.update_user_and_post_data:
class: phpbb\install\module\install_database\task\update_user_and_post_data
arguments:
- '@installer.helper.config'
- '@installer.helper.container_factory'
- '@installer.helper.database'
- '@installer.helper.iohandler'
- '@language'
tags:
- { name: install_database_install, order: 6 }
installer.module.install_database_collection:
class: phpbb\di\ordered_service_collection
arguments: