Skip to content

Commit

Permalink
Fix static call on non-static method
Browse files Browse the repository at this point in the history
  • Loading branch information
harrygulliford committed Oct 27, 2020
1 parent 71086cc commit e65d4d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Query/Grammars/FirebirdGrammar.php
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ private function slicedWhereIn(Builder $query, $where, $limit)
for ($i = 0; $i < ceil(count($where['values']) / $limit); $i++) {
($i !== 0) && $sql .= ' OR ';

$sql .= static::whereIn(
$sql .= $this->whereIn(
$query,
$this->sliceWhereValues($where, $i * $limit, $limit)
);
Expand Down

0 comments on commit e65d4d0

Please sign in to comment.