Skip to content

Commit

Permalink
Fix typo in the expression
Browse files Browse the repository at this point in the history
Co-authored-by: Alexander M. Turek <me@derrabus.de>
  • Loading branch information
vinceAmstoutz and derrabus committed Jun 17, 2023
1 parent 7a45d8b commit f0a5513
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doctrine.rst
Expand Up @@ -999,7 +999,7 @@ In addition, you can query directly with SQL if you need to::
ORDER BY p.price ASC
';

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

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

0 comments on commit f0a5513

Please sign in to comment.