| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 9 | 
| Code Lines | 5 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 1 | Features | 0 | 
| 1 | <?php | ||
| 19 | public function load(array $configs, ContainerBuilder $container) | ||
| 20 |     { | ||
| 21 | $configuration = new Configuration(); | ||
| 22 | $config = $this->processConfiguration($configuration, $configs); | ||
| 23 | |||
| 24 |         $container->setAlias('everlution.navigation_router', $config[Configuration::CONFIG_ROUTER_SERVICE]); | ||
| 25 | |||
| 26 | $loader = new YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); | ||
| 27 |         $loader->load('services.yml'); | ||
| 28 | } | ||
| 30 |