| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | public function build(ContainerBuilder $container) |
||
| 17 | { |
||
| 18 | parent::build($container); |
||
| 19 | |||
| 20 | // Create directories |
||
| 21 | $container->addCompilerPass(new Compiler\DirectoryCompilerPass()); |
||
| 22 | |||
| 23 | // Add event subscribers |
||
| 24 | $container->addCompilerPass(new Compiler\EventSubscribersPass()); |
||
| 25 | } |
||
| 26 | } |
||
| 27 |