*/ final class EmployeeRttBalanceRepository extends ServiceEntityRepository { public function __construct(ManagerRegistry $registry) { parent::__construct($registry, EmployeeRttBalance::class); } public function findOneByEmployeeAndYear(Employee $employee, int $year): ?EmployeeRttBalance { return $this->createQueryBuilder('b') ->andWhere('b.employee = :employee') ->andWhere('b.year = :year') ->setParameter('employee', $employee) ->setParameter('year', $year) ->setMaxResults(1) ->getQuery() ->getOneOrNullResult() ; } }