| 1 | <?php |
||
| 19 | class CustomerRepository extends EntityRepository implements CustomerRepositoryInterface |
||
| 20 | { |
||
| 21 | public function countCustomers(): int |
||
| 29 | |||
| 30 | public function countCustomersInPeriod(\DateTimeInterface $startDate, \DateTimeInterface $endDate): int |
||
| 42 | |||
| 43 | public function findLatest(int $count): array |
||
| 52 | } |
||
| 53 |