Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
20 | protected function loadInternal(array $mergedConfig, ContainerBuilder $container) |
||
21 | { |
||
22 | $loader = new YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
||
23 | $loader->load('services.yml'); |
||
24 | |||
25 | $definition = $container->getDefinition('mewes_k_twig_spreadsheet.twig_spreadsheet_extension'); |
||
26 | $definition->replaceArgument(0, $mergedConfig); |
||
27 | } |
||
28 | } |
||
29 |