Updated paginator types

This commit is contained in:
Alejandro Celaya
2021-12-08 17:36:40 +01:00
parent 3a4550fe24
commit f361403888
9 changed files with 23 additions and 13 deletions

View File

@@ -226,8 +226,6 @@ class VisitRepository extends EntitySpecificationRepository implements VisitRepo
'id' => 'visit_location_id',
]);
$query = $this->getEntityManager()->createNativeQuery($nativeQb->getSQL(), $rsm);
return $query->getResult();
return $this->getEntityManager()->createNativeQuery($nativeQb->getSQL(), $rsm)->getResult();
}
}