| Conditions | 3 |
| Paths | 3 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | 9 | public function execute(InputInterface $input, OutputInterface $output) |
|
| 20 | { |
||
| 21 | 9 | $result = 0; |
|
| 22 | 9 | foreach($this as $task){ |
|
| 23 | 8 | $result |= $task->execute($input, $output); |
|
| 24 | 8 | if($result & ITask::BLOCKING_ERROR_CODE){ |
|
| 25 | 1 | return $result; |
|
| 26 | } |
||
| 27 | 9 | } |
|
| 28 | 8 | return $result; |
|
| 29 | } |
||
| 30 | } |
||
| 31 |