Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
33 | 12 | public function __construct(OutputInterface $output, bool $showColors, bool $onlySummary, OutputFile $targetFile = null) |
|
34 | { |
||
35 | 12 | $this->text = new PHPUnitText(50, 90, false, $onlySummary); |
|
36 | 12 | $this->output = $output; |
|
37 | 12 | $this->targetFile = $targetFile; |
|
38 | 12 | $this->showColors = $showColors; |
|
39 | } |
||
40 | |||
56 |