Skip to content

Commit 7e1d00d

Browse files
LeorentKelmendijaviereguiluz
authored andcommitted
Update doctrine.rts
Query example in documentation has a missing `;`
1 parent 501f388 commit 7e1d00d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doctrine.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -780,7 +780,7 @@ based on PHP conditions)::
780780
->orderBy('p.price', 'ASC');
781781

782782
if (!$includeUnavailableProducts) {
783-
$qb->andWhere('p.available = TRUE')
783+
$qb->andWhere('p.available = TRUE');
784784
}
785785

786786
$query = $qb->getQuery();

0 commit comments

Comments
 (0)