From 7e1d00dd3ff98c81ffe29fd9e6bdcade4c62874c Mon Sep 17 00:00:00 2001 From: Leo Date: Sat, 17 Oct 2020 14:27:52 +0200 Subject: [PATCH] Update doctrine.rts Query example in documentation has a missing `;` --- doctrine.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doctrine.rst b/doctrine.rst index 9a2ee33db89..bb27ad91bfa 100644 --- a/doctrine.rst +++ b/doctrine.rst @@ -780,7 +780,7 @@ based on PHP conditions):: ->orderBy('p.price', 'ASC'); if (!$includeUnavailableProducts) { - $qb->andWhere('p.available = TRUE') + $qb->andWhere('p.available = TRUE'); } $query = $qb->getQuery();