Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
21 | protected function execute(InputInterface $input, OutputInterface $output): int |
||
22 | { |
||
23 | foreach ($this->getCommands() as $c) { |
||
24 | $input = new ArrayInput($c['arguments']); |
||
25 | $input->setInteractive(false); |
||
26 | $this->getApplication() |
||
27 | ->find($c['command']) |
||
28 | ->run($input, $output); |
||
29 | } |
||
30 | |||
31 | return Command::SUCCESS; |
||
32 | } |
||
33 | |||
54 |