Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
bert-w committed Feb 2, 2025
1 parent 9a7fc86 commit c9924d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Database/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ public function selectResultSets($query, $bindings = [], $useReadPdo = true, arr
$sets = [];

do {
$sets[] = $statement->fetchAll($fetchArgs);
$sets[] = $statement->fetchAll(...$fetchArgs);
} while ($statement->nextRowset());

return $sets;
Expand Down

0 comments on commit c9924d3

Please sign in to comment.