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