1 | <?php |
||
13 | class Text extends AbstractText |
||
14 | { |
||
15 | /** @var OutputFile */ |
||
16 | private $targetFile; |
||
17 | |||
18 | /** |
||
19 | * Text constructor. |
||
20 | * @param OutputFile $targetFile |
||
21 | */ |
||
22 | public function __construct(OutputFile $targetFile) |
||
27 | |||
28 | /** |
||
29 | * @param CodeCoverage $coverage |
||
30 | * @throws \RuntimeException |
||
31 | */ |
||
32 | public function process(CodeCoverage $coverage) |
||
39 | } |
||
40 |