Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
12 | public function load(array $configs, ContainerBuilder $container) |
||
13 | { |
||
14 | $config = $this->processConfiguration(new Configuration(), $configs); |
||
15 | |||
16 | $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
||
17 | $loader->load('services.yml'); |
||
18 | |||
19 | $exporterConfig = $config['exporter'] ?? []; |
||
20 | $container->setParameter('mybuilder.cronos_bundle.exporter_config', $exporterConfig); |
||
21 | } |
||
22 | } |
||
23 |