Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
1 | <?php |
||
25 | public function process(ContainerBuilder $container) |
||
26 | { |
||
27 | $yaml = new Parser(); |
||
28 | $versions = $yaml->parse(file_get_contents($container->getParameter('kernel.root_dir') . '/../versions.yml')); |
||
29 | $container->setParameter( |
||
30 | 'graviton.core.version.data', |
||
31 | $versions |
||
32 | ); |
||
33 | } |
||
34 | } |
||
35 |