Skip to content

Commit

Permalink
Replace executeQuery with execute to match doctrine dependency in Sql…
Browse files Browse the repository at this point in the history
…Loader
  • Loading branch information
msoroka committed Sep 4, 2024
1 parent ce34688 commit 2a1210f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DataSource/Loader/SqlLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public function loadData(): string
$queryBuilder->groupBy($this->groupBy);
}

$result = $queryBuilder->executeQuery()->fetchAllAssociative();
$result = $queryBuilder->execute()->fetchAllAssociative();

$filesystemLocal = new Filesystem(new LocalFilesystemAdapter('/'));
$stream = fopen('php://temp', 'r+');
Expand Down

0 comments on commit 2a1210f

Please sign in to comment.