We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 627d054 commit d26f847Copy full SHA for d26f847
src/LazyCommandBundle.php
@@ -3,6 +3,7 @@
3
namespace Alchemy\LazyCommandBundle;
4
5
use Alchemy\LazyCommandBundle\DependencyInjection\Compiler\LazyCommandCompilerPass;
6
+use Symfony\Component\DependencyInjection\Compiler\PassConfig;
7
use Symfony\Component\DependencyInjection\ContainerBuilder;
8
use Symfony\Component\HttpKernel\Bundle\Bundle;
9
@@ -12,6 +13,6 @@ public function build(ContainerBuilder $container)
12
13
{
14
parent::build($container);
15
- $container->addCompilerPass(new LazyCommandCompilerPass());
16
+ $container->addCompilerPass(new LazyCommandCompilerPass(), PassConfig::TYPE_AFTER_REMOVING);
17
}
18
0 commit comments