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