Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
26 | 1 | public function build(ContainerBuilder $container) |
|
27 | { |
||
28 | 1 | parent::build($container); |
|
29 | |||
30 | 1 | $container->addCompilerPass(new Compiler\CacheTaggingPass()); |
|
31 | 1 | $container->addCompilerPass(new Compiler\SessionSupportCompilerPass()); |
|
32 | 1 | $container->addCompilerPass(new Compiler\DoctrineCompilerPass()); |
|
33 | 1 | $container->addCompilerPass(new Compiler\LoggerPass()); |
|
34 | 1 | $container->addCompilerPass(new Compiler\DataCollectorCompilerPass()); |
|
35 | 1 | } |
|
36 | } |
||
37 |