Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | public function load(array $configs, ContainerBuilder $container): void |
||
19 | { |
||
20 | $loader = new YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
||
21 | $loader->load('services.yaml'); |
||
22 | |||
23 | $configuration = $this->getConfiguration($configs, $container); |
||
24 | $config = $this->processConfiguration($configuration, $configs); |
||
25 | } |
||
27 |