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