aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/config/default
diff options
context:
space:
mode:
authorJoshyPHP <s9e.dev@gmail.com>2015-05-29 19:33:17 +0200
committerJoshyPHP <s9e.dev@gmail.com>2015-06-30 10:31:28 +0200
commit615ab099e228f2d7a35a76557095a65321425963 (patch)
tree8441b696b872de9546899ad87fb0dadc797c245c /phpBB/config/default
parent614f04b455371b8145a2bd3702b3307ec18982dd (diff)
downloadforums-615ab099e228f2d7a35a76557095a65321425963.tar
forums-615ab099e228f2d7a35a76557095a65321425963.tar.gz
forums-615ab099e228f2d7a35a76557095a65321425963.tar.bz2
forums-615ab099e228f2d7a35a76557095a65321425963.tar.xz
forums-615ab099e228f2d7a35a76557095a65321425963.zip
[ticket/13891] Added reparser:list and reparser:reparse to CLI
PHPBB3-13891
Diffstat (limited to 'phpBB/config/default')
-rw-r--r--phpBB/config/default/container/services_console.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/phpBB/config/default/container/services_console.yml b/phpBB/config/default/container/services_console.yml
index f0ae6c8ab4..98a26b10e8 100644
--- a/phpBB/config/default/container/services_console.yml
+++ b/phpBB/config/default/container/services_console.yml
@@ -140,3 +140,19 @@ services:
- @dbal.conn
tags:
- { name: console.command }
+
+ console.command.reparser.list:
+ class: phpbb\console\command\reparser\list_all
+ arguments:
+ - @user
+ - @service_container
+ tags:
+ - { name: console.command }
+
+ console.command.reparser.reparse:
+ class: phpbb\console\command\reparser\reparse
+ arguments:
+ - @user
+ - @text_reparser_collection
+ tags:
+ - { name: console.command }