for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace AlecRabbit\Reports;
use AlecRabbit\Reports\Core\AbstractCounterReport;
class SimpleCounterReport extends AbstractCounterReport
{
/**
* @return string
*/
public function __toString(): string
return static::getFormatter()->format($this);
}