Skip to content

Commit

Permalink
fix conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
michalsn committed Apr 5, 2020
1 parent f05ee25 commit 654b915
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions system/Database/BaseBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -1000,7 +1000,7 @@ protected function _whereIn(string $key = null, $values = null, bool $not = fals
throw new InvalidArgumentException(sprintf('%s() expects $key to be a non-empty string', debug_backtrace(0, 2)[1]['function']));
}

return this;
return $this;
}

if ($values === null || (! is_array($values) && ! ($values instanceof Closure)))
Expand All @@ -1010,7 +1010,7 @@ protected function _whereIn(string $key = null, $values = null, bool $not = fals
throw new InvalidArgumentException(sprintf('%s() expects $values to be of type array or closure', debug_backtrace(0, 2)[1]['function']));
}

return this;
return $this;
}

is_bool($escape) || $escape = $this->db->protectIdentifiers;
Expand Down

0 comments on commit 654b915

Please sign in to comment.