Skip to content

Commit f0a5513

Browse files
Fix typo in the expression
Co-authored-by: Alexander M. Turek <me@derrabus.de>
1 parent 7a45d8b commit f0a5513

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
@@ -999,7 +999,7 @@ In addition, you can query directly with SQL if you need to::
999999
ORDER BY p.price ASC
10001000
';
10011001

1002-
$resultSet = $stmt->executeQuery($sql, ['price' => $price]);
1002+
$resultSet = $conn->executeQuery($sql, ['price' => $price]);
10031003

10041004
// returns an array of arrays (i.e. a raw data set)
10051005
return $resultSet->fetchAllAssociative();

0 commit comments

Comments
 (0)