Skip to content

Commit 72a024e

Browse files
committed
[DebugBundle] DebugBundle::registerCommands should be noop
1 parent 3158b76 commit 72a024e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

DebugBundle.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
namespace Symfony\Bundle\DebugBundle;
1313

1414
use Symfony\Bundle\DebugBundle\DependencyInjection\Compiler\DumpDataCollectorPass;
15+
use Symfony\Component\Console\Application;
1516
use Symfony\Component\DependencyInjection\ContainerBuilder;
1617
use Symfony\Component\HttpKernel\Bundle\Bundle;
1718
use Symfony\Component\VarDumper\VarDumper;
@@ -52,4 +53,9 @@ public function build(ContainerBuilder $container)
5253

5354
$container->addCompilerPass(new DumpDataCollectorPass());
5455
}
56+
57+
public function registerCommands(Application $application)
58+
{
59+
// noop
60+
}
5561
}

0 commit comments

Comments
 (0)