| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| 1 | <?php |
||
| 29 | public function build(ContainerBuilder $container) |
||
| 30 | { |
||
| 31 | parent::build($container); |
||
| 32 | |||
| 33 | $container->addCompilerPass(new AddPipelineStagesCompilerPass()); |
||
| 34 | $container->addCompilerPass(new AddCommandBusCommandHandlersCompilerPass()); |
||
| 35 | $container->addCompilerPass(new AddEventBusListenersCompilerPass()); |
||
| 36 | } |
||
| 37 | } |
||
| 38 |
Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.