| 1 | <?php |
||
| 14 | class TextToConsole extends AbstractText |
||
| 15 | { |
||
| 16 | /** @var OutputInterface */ |
||
| 17 | private $output; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * TextToConsole constructor. |
||
| 21 | * @param OutputInterface $output |
||
| 22 | * @param bool $showColors |
||
| 23 | 3 | */ |
|
| 24 | public function __construct(OutputInterface $output, bool $showColors) |
||
| 29 | 1 | ||
| 30 | public function process(CodeCoverage $codeCoverage) |
||
| 34 | |||
| 35 | public static function getConsoleOptionName(): string |
||
| 39 | } |
||
| 40 |