We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25ce571 commit 5dd9c10Copy full SHA for 5dd9c10
src/CacheKey.php
@@ -84,11 +84,11 @@ protected function getColumnClauses(array $where) : string
84
if ($where["first"] instanceof Expression) {
85
$where["first"] = $this->expressionToString($where["first"]);
86
}
87
-
88
- if ($where["second"] instanceof Expression) {
89
- $where["second"] = $this->expressionToString($where["second"]);
90
- }
91
+
+ if ($where["second"] instanceof Expression) {
+ $where["second"] = $this->expressionToString($where["second"]);
+ }
92
return "-{$where["boolean"]}_{$where["first"]}_{$where["operator"]}_{$where["second"]}";
93
94
0 commit comments