| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | public function build(ContainerBuilder $container) |
||
| 15 | { |
||
| 16 | parent::build($container); |
||
| 17 | |||
| 18 | $container->addCompilerPass(new BuilderCompilerPass()); |
||
| 19 | $container->addCompilerPass(new PopulatorCompilerPass()); |
||
| 20 | $container->addCompilerPass(new ParserCompilerPass()); |
||
| 21 | $container->addCompilerPass(new ProviderCompilerPass()); |
||
| 22 | } |
||
| 23 | } |
||
| 24 |