Skip to content

Commit

Permalink
[DebugBundle] DebugBundle::registerCommands should be noop
Browse files Browse the repository at this point in the history
  • Loading branch information
ogizanagi committed Jun 4, 2018
1 parent 9660103 commit dd4b0ed
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Symfony/Bundle/DebugBundle/DebugBundle.php
Expand Up @@ -12,6 +12,7 @@
namespace Symfony\Bundle\DebugBundle;

use Symfony\Bundle\DebugBundle\DependencyInjection\Compiler\DumpDataCollectorPass;
use Symfony\Component\Console\Application;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;
use Symfony\Component\VarDumper\VarDumper;
Expand Down Expand Up @@ -52,4 +53,9 @@ public function build(ContainerBuilder $container)

$container->addCompilerPass(new DumpDataCollectorPass());
}

public function registerCommands(Application $application)
{
// noop
}
}

0 comments on commit dd4b0ed

Please sign in to comment.