| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 45 | public function load(array $configs, ContainerBuilder $container) { |
||
| 46 | |||
| 47 | $fileLocator = new FileLocator(__DIR__ . "/../Resources/config"); |
||
| 48 | |||
| 49 | $serviceLoader = new YamlFileLoader($container, $fileLocator); |
||
| 50 | $serviceLoader->load("services.yml"); |
||
| 51 | |||
| 52 | /** @var ConfigurationInterface $configuration */ |
||
| 53 | $configuration = $this->getConfiguration($configs, $container); |
||
| 54 | |||
| 55 | $config = $this->processConfiguration($configuration, $configs); |
||
| 56 | } |
||
| 57 | } |
||
| 58 |