You codebase:
File: Codeception\Coverage\Subscriber\Printer
protected function printConsole(): void
{
if (class_exists(FacadeReport::class)) {
$writer = FacadeReport::fromObject(self::$coverage);
$this->output->write($writer->renderText(null, showColors: $this->options['colors']));
} else {
$writer = $this->createTextWriter();
$this->output->write($writer->process(self::$coverage, $this->options['colors']));
}
}
FacadeReport::renderText signature support 5 arguments:
- $target,
- ?Thresholds $thresholds = null,
- bool $showUncoveredFiles = false,
- bool $showOnlySummary = false,
- bool $showColors,
Your code - 2 arguments:
- $target,
- bool $showColors,
General point - remove some report text:

You codebase:
File: Codeception\Coverage\Subscriber\Printer
FacadeReport::renderText signature support 5 arguments:
Your code - 2 arguments:
General point - remove some report text: