Test Setup Failed
Push — master ( 612b96...955782 )
by Matthew
02:40
created

DtcQueueBundle.php (1 issue)

Upgrade to new PHP Analysis Engine

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
The extends keyword must be on the same line as the class name
Loading history...
11
{
12
    public function build(ContainerBuilder $container)
13
    {
14
        parent::build($container);
15
        $container->addCompilerPass(new WorkerCompilerPass());
16
    }
17
}
18