| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 11 | 
| Code Lines | 7 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 30 | public function load(array $configs, ContainerBuilder $container) | ||
| 31 |     { | ||
| 32 | $configuration = new Configuration(); | ||
| 33 | $config = $this->processConfiguration($configuration, $configs); | ||
| 34 | $loader = new YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config/services')); | ||
| 35 | |||
| 36 |         $loader->load('routing.yml'); | ||
| 37 |         $loader->load('twig.yml'); | ||
| 38 | |||
| 39 |         $container->setParameter('bengor_file.config', $config); | ||
| 40 | } | ||
| 41 | } | ||
| 42 |