Skip to content

Commit

Permalink
fixed error in select async method
Browse files Browse the repository at this point in the history
  • Loading branch information
FacedSID committed Sep 20, 2018
1 parent a372304 commit d854480
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Integrations/Laravel/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ public function selectAsync(array $queries)
$this->logQuery($query, $bindings, $result->getStatistic()->getTime());

$results[$i] = $result->getRows();
$statistic[$i] = $result->$result->getStatistic();
$statistic[$i] = $result->getStatistic();
}

$this->setLastQueryStatistic($statistic);
Expand Down

0 comments on commit d854480

Please sign in to comment.