| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | public function load(array $configs, ContainerBuilder $container) |
||
| 13 | { |
||
| 14 | $loader = new YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
||
| 15 | $loader->load('services.yaml'); |
||
| 16 | |||
| 17 | $configuration = $this->getConfiguration($configs, $container); |
||
| 18 | $config = $this->processConfiguration($configuration, $configs); |
||
|
|
|||
| 19 | |||
| 20 | $container->setParameter('micayael_native_query_from_file_bundle_config', $config); |
||
| 21 | } |
||
| 23 |