1 | <?php |
||
13 | class TextToConsole extends AbstractText |
||
14 | { |
||
15 | /** @var OutputInterface */ |
||
16 | private $output; |
||
17 | |||
18 | /** |
||
19 | * TextToConsole constructor. |
||
20 | * @param OutputInterface $output |
||
21 | * @param bool $showColors |
||
22 | */ |
||
23 | public function __construct(OutputInterface $output, bool $showColors) |
||
28 | |||
29 | public function process(CodeCoverage $codeCoverage) |
||
33 | } |
||
34 |