| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 42 | 1 | public function __construct( |
|
| 43 | ChunkResults $chunkResults, |
||
| 44 | OutputInterface $output, |
||
| 45 | int $numParallelProcesses = 1, |
||
| 46 | bool $verbose = false, |
||
| 47 | bool $stop = false) |
||
| 48 | { |
||
| 49 | 1 | $this->chunkResults = $chunkResults; |
|
| 50 | 1 | $this->output = $output; |
|
| 51 | 1 | $this->numParallelProcesses = $numParallelProcesses; |
|
| 52 | 1 | $this->verbose = $verbose; |
|
| 53 | 1 | $this->stop = $stop; |
|
| 54 | 1 | } |
|
| 55 | |||
| 102 |