Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
31 | 63 | public function build(ContainerBuilder $container) |
|
32 | { |
||
33 | 63 | parent::build($container); |
|
34 | 63 | $container->addCompilerPass(new Compiler\DoctrineMiddlewarePass()); |
|
35 | 63 | $container->addCompilerPass(new Compiler\ValidatorMiddlewarePass()); |
|
36 | 63 | $container->addCompilerPass(new Compiler\SecurityMiddlewarePass()); |
|
37 | 63 | $container->addCompilerPass(new Compiler\CommandHandlerPass($this->handlerMapping)); |
|
38 | 63 | } |
|
39 | |||
50 |