for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace AlecRabbit\Counters;
use AlecRabbit\Counters\Core\AbstractCounter;
use AlecRabbit\Reports\Contracts\ReportInterface;
use AlecRabbit\Reports\SimpleCounterReport;
class SimpleCounter extends AbstractCounter
{
protected function createEmptyReport(): ReportInterface
return (new SimpleCounterReport())->buildOn($this);
}