We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e598595 commit 33fd5c9Copy full SHA for 33fd5c9
src/Db/Sql/Performer/SelectPerformer.php
@@ -59,7 +59,7 @@ public function setEntity(string $entity): void
59
*/
60
public function perform($select): array
61
{
62
- $rows = $this->tableGateway->selectWith($select);
+ $rows = $this->tableGateway->selectWith($select)->toArray();
63
$rowsToBeShown = [];
64
65
foreach ($rows as $row) {
@@ -70,4 +70,4 @@ public function perform($select): array
70
71
return $rowsToBeShown;
72
}
73
-}
+}
0 commit comments