| 1 | <?php |
||
| 8 | class CustomerStatistic implements StatisticInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var CustomerRepository |
||
| 12 | */ |
||
| 13 | private $customerRepository; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @var EngineInterface |
||
| 17 | */ |
||
| 18 | private $engine; |
||
| 19 | |||
| 20 | public function __construct(CustomerRepository $customerRepository, EngineInterface $engine) |
||
| 25 | |||
| 26 | public function generate(): string |
||
| 34 | } |
||
| 35 |