1 | <?php |
||
8 | abstract class AbstractText implements CoverageProcessorInterface |
||
9 | { |
||
10 | /** @var PHPUnitText */ |
||
11 | private $text; |
||
12 | |||
13 | /** @var bool */ |
||
14 | private $showColors; |
||
15 | |||
16 | public function __construct(bool $showColors = false) |
||
21 | |||
22 | protected function getTextCoverage(CodeCoverage $codeCoverage): string |
||
26 | } |
||
27 |