Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
32 | protected function execute(InputInterface $input, OutputInterface $output) |
||
33 | { |
||
34 | foreach ($this->commands as $commandName) { |
||
35 | $command = $this->getApplication()->find($commandName); |
||
36 | |||
37 | $arguments = array( |
||
38 | 'entity' => $this->entityClassName, |
||
39 | '--force' => $this->force, |
||
40 | ); |
||
41 | $greetInput = new ArrayInput($arguments); |
||
42 | $command->run($greetInput, $output); |
||
43 | } |
||
46 |