Skip to content

Commit

Permalink
Update CacheKey.php
Browse files Browse the repository at this point in the history
  • Loading branch information
mikebronner authored Mar 20, 2023
1 parent 25ce571 commit 5dd9c10
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/CacheKey.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,11 @@ protected function getColumnClauses(array $where) : string
if ($where["first"] instanceof Expression) {
$where["first"] = $this->expressionToString($where["first"]);
}
if ($where["second"] instanceof Expression) {
$where["second"] = $this->expressionToString($where["second"]);
}

if ($where["second"] instanceof Expression) {
$where["second"] = $this->expressionToString($where["second"]);
}

return "-{$where["boolean"]}_{$where["first"]}_{$where["operator"]}_{$where["second"]}";
}

Expand Down

0 comments on commit 5dd9c10

Please sign in to comment.