mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-02 20:45:29 +02:00
41 lines
1.4 KiB
YAML
41 lines
1.4 KiB
YAML
services:
|
|
installer.update_database.update_task:
|
|
class: phpbb\install\module\update_database\task\update
|
|
arguments:
|
|
- '@installer.helper.container_factory'
|
|
- '@filesystem'
|
|
- '@installer.helper.config'
|
|
- '@installer.helper.iohandler'
|
|
- '@language'
|
|
- '%core.root_path%'
|
|
tags:
|
|
- { name: update_database_task, order: 10 }
|
|
|
|
installer.update_database.update_extensions:
|
|
class: phpbb\install\module\update_database\task\update_extensions
|
|
arguments:
|
|
- '@installer.helper.container_factory'
|
|
- '@installer.helper.config'
|
|
- '@installer.helper.iohandler'
|
|
- '@installer.helper.update_helper'
|
|
- '%core.root_path%'
|
|
tags:
|
|
- { name: update_database_task, order: 20 }
|
|
|
|
installer.module.update_database_collection:
|
|
class: phpbb\di\ordered_service_collection
|
|
arguments:
|
|
- '@service_container'
|
|
tags:
|
|
- { name: service_collection, tag: update_database_task, class_name_aware: true }
|
|
|
|
installer.module.update_database:
|
|
class: phpbb\install\module\update_database\module
|
|
parent: installer.module_base
|
|
arguments:
|
|
- '@installer.module.update_database_collection'
|
|
- true
|
|
- false
|
|
tags:
|
|
- { name: installer_update_module, order: 40 }
|