Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | 1 | public function load(array $configs, ContainerBuilder $container): void |
|
25 | { |
||
26 | $container |
||
27 | 1 | ->setParameter( |
|
28 | 1 | 'php_directive', |
|
29 | 1 | $this->processConfiguration(new Configuration(), $configs) |
|
30 | ); |
||
31 | |||
32 | 1 | $loader = new PhpFileLoader( |
|
33 | $container, |
||
34 | 1 | new FileLocator(__DIR__ . '/../Resources/config') |
|
35 | ); |
||
36 | |||
37 | 1 | $loader->load('services.php'); |
|
38 | 1 | } |
|
40 |