Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
32 | public function invoke(ConsoleConfigInterface $config, OutputInterface $output): ContainerInterface |
||
33 | { |
||
34 | $container = $this->containerFactory->invoke($config); |
||
35 | |||
36 | $container->setInstance(FilesystemInterface::class, new Filesystem(new Local('./'))); |
||
37 | $container->setInstance(OutputInterface::class, $output); |
||
38 | |||
39 | return $container; |
||
40 | } |
||
42 |