| 1 | <?php |
||
| 8 | class CustomerStatistic implements StatisticInterface |
||
| 9 | { |
||
| 10 | /** @var CustomerRepository */ |
||
| 11 | private $customerRepository; |
||
| 12 | |||
| 13 | /** @var EngineInterface */ |
||
| 14 | private $engine; |
||
| 15 | |||
| 16 | public function __construct(CustomerRepository $customerRepository, EngineInterface $engine) |
||
| 21 | |||
| 22 | public function generate(): string |
||
| 30 | |||
| 31 | public static function getDefaultPriority(): int |
||
| 35 | } |
||
| 36 |