| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 5 | ||
| Bugs | 0 | Features | 2 |
| 1 | <?php |
||
| 36 | 2 | protected function execute(InputInterface $input, OutputInterface $output) |
|
| 37 | { |
||
| 38 | 2 | $commander = $this->getCommander()->initialize(); |
|
| 39 | |||
| 40 | 2 | $taskManager = $commander->getTaskManager(); |
|
| 41 | 2 | $logger = $commander->getLogger(); |
|
| 42 | |||
| 43 | 2 | $taskRunner = new TaskRunner($taskManager, $output, $logger); |
|
| 44 | 2 | $taskRunner->runAll($this->getConfiguration()->getProcessTimeout()); |
|
| 45 | 2 | } |
|
| 46 | } |
||
| 47 |