Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | public function load(array $configs, ContainerBuilder $container) |
||
18 | { |
||
19 | $configuration = new Configuration (); |
||
20 | $config = $this->processConfiguration ( $configuration, $configs ); |
||
21 | |||
22 | $loader = new Loader\XmlFileLoader ( $container, new FileLocator ( __DIR__ . '/../Resources/config' ) ); |
||
23 | $loader->load ( 'services.xml' ); |
||
24 | $this->createServices ( $config, $container ); |
||
25 | } |
||
26 | protected function createServices($config, ContainerBuilder $container) |
||
45 |