Skip to content

Commit 7a1a937

Browse files
committed
minor #14434 Update doctrine.rts (LeorentKelmendi)
This PR was submitted for the 5.1 branch but it was merged into the 4.4 branch instead. Discussion ---------- Update doctrine.rts Query example in documentation has a missing `;` <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/releases for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `5.x` for features of unreleased versions). --> Commits ------- 7e1d00d Update doctrine.rts
2 parents 501f388 + 7e1d00d commit 7a1a937

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)