$employees * * @return list */ public function findForPrint(DateTimeImmutable $from, DateTimeImmutable $to, array $employees): array; /** * @param list $employees * * @return list */ public function findByDateAndEmployees(DateTimeImmutable $date, array $employees): array; /** * @return list */ public function findByEmployeeAndDateRange(Employee $employee, DateTimeInterface $from, DateTimeInterface $to): array; }