diff options
| author | Marc Alexander <admin@m-a-styles.de> | 2016-02-29 21:45:11 +0100 |
|---|---|---|
| committer | Marc Alexander <admin@m-a-styles.de> | 2016-02-29 21:45:11 +0100 |
| commit | b80cb8e796a107a49b77b0efe9d43ee7ef550655 (patch) | |
| tree | 797c83cf7878de21e7e02ef5f9139cce8d17c296 /phpBB/config | |
| parent | f0a33dca7255e2fb643d1a1e5fa4cfe42934fe2b (diff) | |
| parent | 52dffef03cb97a54041b1fba638eafb3ed0a5ce0 (diff) | |
| download | forums-b80cb8e796a107a49b77b0efe9d43ee7ef550655.tar forums-b80cb8e796a107a49b77b0efe9d43ee7ef550655.tar.gz forums-b80cb8e796a107a49b77b0efe9d43ee7ef550655.tar.bz2 forums-b80cb8e796a107a49b77b0efe9d43ee7ef550655.tar.xz forums-b80cb8e796a107a49b77b0efe9d43ee7ef550655.zip | |
Merge pull request #4194 from Nicofuma/ticket/14499
[ticket/14499] Add command to update the board from CLI
Diffstat (limited to 'phpBB/config')
| -rw-r--r-- | phpBB/config/installer/container/services_install_console.yml | 29 |
1 files changed, 27 insertions, 2 deletions
diff --git a/phpBB/config/installer/container/services_install_console.yml b/phpBB/config/installer/container/services_install_console.yml index 73c804d9ff..41d3aa4c1b 100644 --- a/phpBB/config/installer/container/services_install_console.yml +++ b/phpBB/config/installer/container/services_install_console.yml @@ -21,7 +21,6 @@ services: arguments: - '@language' - '@installer.helper.iohandler_factory' - - '@installer.installer.install' tags: - { name: console.installer.command } @@ -31,6 +30,32 @@ services: arguments: - '@language' - '@installer.helper.iohandler_factory' - - '@installer.installer.install' + tags: + - { name: console.installer.command } + + console.updater.command.update: + class: phpbb\install\console\command\update\update + arguments: + - '@language' + - '@installer.helper.iohandler_factory' + - '@installer.installer.update' + - '@installer.helper.install_helper' + tags: + - { name: console.installer.command } + + console.updater.command.config.show: + class: phpbb\install\console\command\update\config\show + arguments: + - '@language' + - '@installer.helper.iohandler_factory' + tags: + - { name: console.installer.command } + + + console.updater.command.config.validate: + class: phpbb\install\console\command\update\config\validate + arguments: + - '@language' + - '@installer.helper.iohandler_factory' tags: - { name: console.installer.command } |
