| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | public static function createContainer() |
||
| 13 | { |
||
| 14 | $container = new ContainerBuilder(); |
||
| 15 | $loader = new YamlFileLoader($container, new FileLocator(__DIR__ . '/../config')); |
||
| 16 | $loader->load('services.yml'); |
||
| 17 | $container->addCompilerPass(new AddConsoleCommandPass()); |
||
| 18 | $container->compile(); |
||
| 19 | |||
| 20 | return $container; |
||
| 21 | } |
||
| 23 |