| 1 | <?php |
||
| 2 | |||
| 3 | namespace Happyr\Mq2phpBundle; |
||
| 4 | |||
| 5 | use Happyr\Mq2phpBundle\DependencyInjection\Compiler\RegisterConsumers; |
||
| 6 | use Symfony\Component\DependencyInjection\ContainerBuilder; |
||
| 7 | use Symfony\Component\HttpKernel\Bundle\Bundle; |
||
| 8 | |||
| 9 | class HappyrMq2phpBundle extends Bundle |
||
| 10 | { |
||
| 11 | 1 | public function build(ContainerBuilder $container) |
|
| 12 | { |
||
| 13 | 1 | $container->addCompilerPass(new RegisterConsumers()); |
|
| 14 | 1 | } |
|
| 15 | } |
||
| 16 |