1 | <?php |
||
21 | final class ListEmployeeQuery |
||
22 | { |
||
23 | /** @var EntityManagerInterface */ |
||
24 | private $entityManager; |
||
25 | |||
26 | /** |
||
27 | * @param EntityManagerInterface $entityManager |
||
28 | */ |
||
29 | public function __construct(EntityManagerInterface $entityManager) |
||
33 | |||
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | */ |
||
37 | public function findAll(int $page = 1, int $limit = 10): Pagerfanta |
||
55 | } |
||
56 |