Merge pull request #5227 from michalhuras/patch-2

Fix uninitialised variable
This commit is contained in:
Morris Jobke
2020-10-12 16:55:40 +02:00
committed by GitHub

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);
}