We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3158b76 commit 72a024eCopy full SHA for 72a024e
DebugBundle.php
@@ -12,6 +12,7 @@
12
namespace Symfony\Bundle\DebugBundle;
13
14
use Symfony\Bundle\DebugBundle\DependencyInjection\Compiler\DumpDataCollectorPass;
15
+use Symfony\Component\Console\Application;
16
use Symfony\Component\DependencyInjection\ContainerBuilder;
17
use Symfony\Component\HttpKernel\Bundle\Bundle;
18
use Symfony\Component\VarDumper\VarDumper;
@@ -52,4 +53,9 @@ public function build(ContainerBuilder $container)
52
53
54
$container->addCompilerPass(new DumpDataCollectorPass());
55
}
56
+
57
+ public function registerCommands(Application $application)
58
+ {
59
+ // noop
60
+ }
61
0 commit comments