Skip to content

Commit ef9397c

Browse files
Update doctrine.rts
Query example in documentation has a missing `;`
1 parent d47b5e1 commit ef9397c

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
@@ -776,7 +776,7 @@ based on PHP conditions)::
776776
->orderBy('p.price', 'ASC');
777777

778778
if (!$includeUnavailableProducts) {
779-
$qb->andWhere('p.available = TRUE')
779+
$qb->andWhere('p.available = TRUE');
780780
}
781781

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

0 commit comments

Comments
 (0)