Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
18 | public function __invoke(ContainerInterface $container, $requestedName, array $options = null) |
||
19 | { |
||
20 | $cliApplication = new Application('AsseticBundle', '3.x'); |
||
21 | |||
22 | $cliApplication->add(new BuildCommand($container->get('AsseticService'))); |
||
23 | $cliApplication->add(new SetupCommand($container->get('AsseticService'))); |
||
24 | |||
25 | return $cliApplication; |
||
26 | } |
||
29 |