mmucklo /
DtcQueueBundle
These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
| 1 | <?php |
||
| 2 | namespace Dtc\QueueBundle; |
||
| 3 | |||
| 4 | use Dtc\QueueBundle\DependencyInjection\Compiler\WorkerCompilerPass; |
||
| 5 | |||
| 6 | use Symfony\Component\HttpKernel\Bundle\Bundle; |
||
| 7 | use Symfony\Component\DependencyInjection\ContainerBuilder; |
||
| 8 | |||
| 9 | class DtcQueueBundle |
||
| 10 | extends Bundle |
||
|
0 ignored issues
–
show
Coding Style
introduced
by
Loading history...
|
|||
| 11 | { |
||
| 12 | public function build(ContainerBuilder $container) |
||
| 13 | { |
||
| 14 | parent::build($container); |
||
| 15 | $container->addCompilerPass(new WorkerCompilerPass()); |
||
| 16 | } |
||
| 17 | } |
||
| 18 |