| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 33 | public function prepend(ContainerBuilder $container) |
||
| 34 | { |
||
| 35 | $parser = new Parser(); |
||
| 36 | $config = $parser->parse(file_get_contents(__DIR__ . '/../Resources/config/config.yml')); |
||
| 37 | |||
| 38 | foreach ($config as $key => $configuration) { |
||
| 39 | $container->prependExtensionConfig($key, $configuration); |
||
| 40 | } |
||
| 41 | } |
||
| 42 | } |
||
| 43 |