Total Complexity | 6 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
7 | class ParallelCommand extends AbstractStandardCommand |
||
8 | { |
||
9 | public const TYPE = 'Parallel'; |
||
10 | |||
11 | /** |
||
12 | * @param array|null $data Array of data to iterate over |
||
13 | * @param AbstractStandardCommand[]|null $commands Commands to run in parallel |
||
14 | */ |
||
15 | 7 | public function __construct( |
|
20 | } |
||
21 | |||
22 | 5 | public function jsonSerialize(): array |
|
37 |