Skip to content

Commit

Permalink
bug #27496 [DebugBundle] DebugBundle::registerCommands should be noop…
Browse files Browse the repository at this point in the history
… (ogizanagi)

This PR was merged into the 4.1 branch.

Discussion
----------

[DebugBundle] DebugBundle::registerCommands should be noop

| Q             | A
| ------------- | ---
| Branch?       | 4.1 <!-- see below -->
| Bug fix?      | yes
| New feature?  | no <!-- don't forget to update src/**/CHANGELOG.md files -->
| BC breaks?    | no     <!-- see https://symfony.com/bc -->
| Deprecations? | no <!-- don't forget to update UPGRADE-*.md and src/**/CHANGELOG.md files -->
| Tests pass?   | yes    <!-- please add some, will be required by reviewers -->
| Fixed tickets | #27493   <!-- #-prefixed issue number(s), if any -->
| License       | MIT
| Doc PR        | N/A

Commits
-------

dd4b0ed [DebugBundle] DebugBundle::registerCommands should be noop
  • Loading branch information
nicolas-grekas committed Jun 4, 2018
2 parents cc0320f + dd4b0ed commit 7605706
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 7605706

Please sign in to comment.