Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
18 | 1 | public function build(ContainerBuilder $container) |
|
19 | { |
||
20 | 1 | $container->addCompilerPass(new ProfileCompilerPass()); |
|
21 | 1 | $container->addCompilerPass(new DestinationCompilerPass()); |
|
22 | 1 | $container->addCompilerPass(new SourceCompilerPass()); |
|
23 | 1 | $container->addCompilerPass(new ProcessorCompilerPass()); |
|
24 | 1 | $container->addCompilerPass(new NamerCompilerPass()); |
|
25 | 1 | } |
|
26 | } |
||
27 |