Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
15 | 2 | public function load(array $configs, ContainerBuilder $container) |
|
16 | { |
||
17 | 2 | $configuration = new Configuration(); |
|
18 | 2 | $config = $this->processConfiguration($configuration, $configs); |
|
19 | |||
20 | 1 | $container->setParameter('loevgaard_dandomain_stock.dandomain_order_state_ids', $config['dandomain_order_state_ids']); |
|
21 | |||
22 | 1 | $loader = new YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
23 | 1 | $loader->load('services.yml'); |
|
24 | 1 | } |
|
25 | |||
48 |