| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | public function load(array $configs, ContainerBuilder $container): void |
||
| 22 | { |
||
| 23 | $configuration = new Configuration(); |
||
| 24 | $config = $this->processConfiguration($configuration, $configs); |
||
| 25 | |||
| 26 | $loader = new Loader\XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
||
| 27 | $loader->load('services.xml'); |
||
| 28 | |||
| 29 | $container->getDefinition('core23_twig.router.extension') |
||
| 30 | ->replaceArgument(2, $config['pagination']) |
||
| 31 | ; |
||
| 34 |