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