Fixed typo

This commit is contained in:
Alejandro Celaya 2022-01-06 18:35:50 +01:00
parent d00a56bec0
commit 2b0567b368

View file

@ -204,7 +204,7 @@ class VisitRepository extends EntitySpecificationRepository implements VisitRepo
$qb->select('v.id')
->orderBy('v.id', 'DESC')
// Falling back to values that will behave as no limit/offset, but will workaround MS SQL not allowing
// Falling back to values that will behave as no limit/offset, but will work around MS SQL not allowing
// order on sub-queries without offset
->setMaxResults($limit ?? PHP_INT_MAX)
->setFirstResult($offset ?? 0);