aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/console
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-06-05 01:03:16 +0200
committerTristan Darricau <github@nicofuma.fr>2014-06-05 01:03:16 +0200
commit5b51acf245fc1fbd454d394e8b44bf73d6439248 (patch)
tree69eab1f996c338678b66ebce62181aaa867b9c70 /phpBB/phpbb/console
parent5e9c8a0ceaabb84a679bd56e7165a9e29fc3da71 (diff)
downloadforums-5b51acf245fc1fbd454d394e8b44bf73d6439248.tar
forums-5b51acf245fc1fbd454d394e8b44bf73d6439248.tar.gz
forums-5b51acf245fc1fbd454d394e8b44bf73d6439248.tar.bz2
forums-5b51acf245fc1fbd454d394e8b44bf73d6439248.tar.xz
forums-5b51acf245fc1fbd454d394e8b44bf73d6439248.zip
[ticket/12655] Set register_container_commands as public
PHPBB3-12655
Diffstat (limited to 'phpBB/phpbb/console')
-rw-r--r--phpBB/phpbb/console/application.php5
1 files changed, 1 insertions, 4 deletions
diff --git a/phpBB/phpbb/console/application.php b/phpBB/phpbb/console/application.php
index 91d95b9a7b..b1f0635913 100644
--- a/phpBB/phpbb/console/application.php
+++ b/phpBB/phpbb/console/application.php
@@ -13,9 +13,6 @@
namespace phpbb\console;
-use Symfony\Component\Console\Input\ArgvInput;
-use Symfony\Component\Console\Output\ConsoleOutput;
-use Symfony\Component\Console\Output\ConsoleOutputInterface;
use Symfony\Component\Console\Shell;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
@@ -79,7 +76,7 @@ class application extends \Symfony\Component\Console\Application
* @param TaggedContainerInterface $container The container
* @param string $tag The tag used to register the commands
*/
- function register_container_commands(TaggedContainerInterface $container, $tag = 'console.command')
+ public function register_container_commands(TaggedContainerInterface $container, $tag = 'console.command')
{
foreach($container->findTaggedServiceIds($tag) as $id => $void)
{