aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/config/installer/container/services_install_finish.yml
blob: 7f4c4d99bfd3cdae0d904397d647f44999764d46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
services:
    installer.install_finish.populate_migrations:
        class: phpbb\install\module\install_finish\task\populate_migrations
        arguments:
            - @installer.helper.container_factory
        tags:
            - { name: install_finish, order: 1 }

    installer.install_finish.notify_user:
        class: phpbb\install\module\install_finish\task\notify_user
        arguments:
            - @installer.helper.container_factory
            - @installer.helper.config
            - @installer.helper.iohandler
            - %core.root_path%
            - %core.php_ext%
        tags:
            - { name: install_finish, order: 2 }

    installer.module.install_finish_collection:
        class: phpbb\di\ordered_service_collection
        arguments:
            - @service_container
        tags:
            - { name: service_collection, tag: install_finish, class_name_aware: true }

    installer.module.finish_install:
        class: phpbb\install\module\install_filesystem\module
        parent: installer.module_base
        arguments:
            - @installer.module.install_finish_collection
        tags:
            - { name: installer_install_module, order: 6 }