1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/12655] Set register_container_commands as public

PHPBB3-12655
This commit is contained in:
Tristan Darricau
2014-06-05 01:03:16 +02:00
parent 5e9c8a0cea
commit 5b51acf245

View File

@@ -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)
{