WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit bdf0df6

Browse files
author
Josh Ralph
committed
Fixed expression to string issue
1 parent 061cb34 commit bdf0df6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CacheKey.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ protected function getColumnClauses(array $where) : string
108108
}
109109

110110
if ($where["second"] instanceof Expression) {
111-
$where["second"] = $this->expressionToString($where["second"]);
111+
$where["second"] = $this->expressionToString($where["second"]);
112112
}
113113

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

0 commit comments

Comments
 (0)