aboutsummaryrefslogtreecommitdiff
path: root/phpBB/bin
diff options
context:
space:
mode:
authorCarlo <carlo@phpbbitalia.net>2014-07-15 11:36:51 +0200
committerCarlo <carlo@phpbbitalia.net>2014-07-15 11:36:51 +0200
commit15136e4f8e36ca972f6b1b0bb7a4867967698335 (patch)
tree43506c468517ff4a2d1101efcfc3a96596a8ebb1 /phpBB/bin
parent[ticket/12685] Add a new line (diff)
downloadphpbb-15136e4f8e36ca972f6b1b0bb7a4867967698335.tar.gz
phpbb-15136e4f8e36ca972f6b1b0bb7a4867967698335.tar.bz2
phpbb-15136e4f8e36ca972f6b1b0bb7a4867967698335.zip
[ticket/12685] Inject console.command_collection instead of the container
PHPBB3-12685
Diffstat (limited to 'phpBB/bin')
-rwxr-xr-xphpBB/bin/phpbbcli.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/bin/phpbbcli.php b/phpBB/bin/phpbbcli.php
index 5fac2cf8b3..d181a63f68 100755
--- a/phpBB/bin/phpbbcli.php
+++ b/phpBB/bin/phpbbcli.php
@@ -58,5 +58,5 @@ $user = $phpbb_container->get('user');
$user->add_lang('acp/common');
$application = new \phpbb\console\application('phpBB Console', PHPBB_VERSION, $user);
-$application->register_container_commands($phpbb_container);
+$application->register_container_commands($phpbb_container->get('console.command_collection'));
$application->run($input);