Fix uninitialised variable

This commit is contained in:
Michał 2020-10-07 22:43:22 +02:00 committed by GitHub
parent 241e70b911
commit 15dd67739f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -102,7 +102,7 @@ To create a mapper, inherit from the mapper base class and call the parent const
->setMaxResults($limit)
->setFirstResult($offset);
return $this->findEntities($sql);
return $this->findEntities($qb);
}