From 15dd67739f3501cf222a87f97a9a396cf9502072 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82?= Date: Wed, 7 Oct 2020 22:43:22 +0200 Subject: [PATCH] Fix uninitialised variable --- developer_manual/app/storage/database.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/developer_manual/app/storage/database.rst b/developer_manual/app/storage/database.rst index 2f0f68567..b968bb564 100644 --- a/developer_manual/app/storage/database.rst +++ b/developer_manual/app/storage/database.rst @@ -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); }