| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 27 | public function load(array $configs, ContainerBuilder $container): void |
||
| 28 | { |
||
| 29 | $metricsPowerConfiguration = new Configuration(); |
||
| 30 | $metricsPowerProcessedConfiguration = $this->processConfiguration($metricsPowerConfiguration, $configs); |
||
| 31 | $loader = (new YamlFileLoader($container, new FileLocator(__DIR__.'/Resources/config'))); |
||
| 32 | $container->setParameter(Configuration::METRICS_POWER_CONFIG, $metricsPowerProcessedConfiguration); |
||
| 33 | |||
| 34 | $loader->load('services.yaml'); |
||
| 35 | } |
||
| 37 |