Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | protected function loadInternal(array $mergedConfig, ContainerBuilder $container) |
||
24 | { |
||
25 | $loader = new Loader\XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
||
26 | $loader->load('services.xml'); |
||
27 | |||
28 | foreach($mergedConfig as $name => $value) { |
||
29 | $container->setParameter($this->getAlias() . '.' . $name, $value); |
||
30 | } |
||
31 | } |
||
32 | |||
41 |