<?phpnamespace Coolshop\CoolDashboardBundle;use Symfony\Component\HttpKernel\Bundle\Bundle;use Symfony\Component\DependencyInjection\ContainerBuilder;use Coolshop\CoolDashboardBundle\DependencyInjection\Compiler\CommandPass;class CoolDashboardBundle extends Bundle{ public function build(ContainerBuilder $container) { parent::build($container); $container->addCompilerPass(new CommandPass()); }}