Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 4 | ||
Bugs | 1 | Features | 3 |
1 | <?php |
||
25 | public function load(ContainerBuilder $container) |
||
26 | { |
||
27 | $loader = parent::load($container); |
||
28 | |||
29 | $this |
||
30 | ->loadResourceIfExist($loader, 'parameters.yml') |
||
31 | ->loadResourceIfExist($loader, 'services.yml') |
||
32 | ->loadResourceIfExist($loader, sprintf('parameters_%s.yml', App::environment())) |
||
33 | ; |
||
34 | } |
||
35 | } |
||
36 |