| 1 | <?php | ||
| 13 | final class CountStat implements Stat | ||
| 14 | { | ||
| 15 | use Attribute\Alias; | ||
| 16 | |||
| 17 | /** | ||
| 18 | * @var \App\Service\FormService | ||
| 19 | */ | ||
| 20 | private $formService; | ||
| 21 | |||
| 22 | /** | ||
| 23 | * Constructor | ||
| 24 | * | ||
| 25 | * @param \App\Service\FormService $formService | ||
| 26 | */ | ||
| 27 | public function __construct(FormService $formService) | ||
| 31 | |||
| 32 | /** | ||
| 33 |      * {@inheritdoc} | ||
| 34 | */ | ||
| 35 | public function get(): Datum | ||
| 44 | } | ||
| 45 |