| Total Complexity | 3 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 10 | abstract class QueryFactory implements QueryFactoryInterface |
||
| 11 | { |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @var Paginator |
||
| 15 | */ |
||
| 16 | private $paginator; |
||
| 17 | |||
| 18 | |||
| 19 | public function create(EntityManager $em): Query |
||
| 22 | } |
||
| 23 | |||
| 24 | |||
| 25 | public function getPaginator(): ?Paginator |
||
| 28 | } |
||
| 29 | |||
| 30 | |||
| 31 | abstract protected function configure(EntityManager $em): Query; |
||
| 32 | |||
| 33 | |||
| 34 | public function setPaginator(Paginator $paginator) |
||
| 43 |