|
11 | 11 | use Illuminate\Support\Str;
|
12 | 12 | use Ramsey\Uuid\Uuid;
|
13 | 13 | use UnitEnum;
|
| 14 | +use DateTime; |
14 | 15 |
|
15 | 16 | class CacheKey
|
16 | 17 | {
|
@@ -99,7 +100,12 @@ protected function getColumnClauses(array $where) : string
|
99 | 100 |
|
100 | 101 | protected function getCurrentBinding(string $type, $bindingFallback = null)
|
101 | 102 | {
|
102 |
| - return data_get($this->query->bindings, "{$type}.{$this->currentBinding}", $bindingFallback); |
| 103 | + $binding = data_get($this->query->bindings, "{$type}.{$this->currentBinding}", $bindingFallback); |
| 104 | + if ($binding instanceof DateTime) { |
| 105 | + return $binding->format("Y-m-d-H-i-s"); |
| 106 | + } |
| 107 | + |
| 108 | + return $binding; |
103 | 109 | }
|
104 | 110 |
|
105 | 111 | protected function getHavingClauses()
|
@@ -321,10 +327,7 @@ protected function getValuesClause(array $where = []) : string
|
321 | 327 |
|
322 | 328 | protected function getValuesFromWhere(array $where) : string
|
323 | 329 | {
|
324 |
| - if (array_key_exists("value", $where) |
325 |
| - && is_object($where["value"]) |
326 |
| - && get_class($where["value"]) === "DateTime" |
327 |
| - ) { |
| 330 | + if (array_key_exists("value", $where) && $where["value"] instanceof DateTime) { |
328 | 331 | return $where["value"]->format("Y-m-d-H-i-s");
|
329 | 332 | }
|
330 | 333 |
|
@@ -442,12 +445,14 @@ protected function recursiveImplode(array $items, string $glue = ",") : string
|
442 | 445 | return $result;
|
443 | 446 | }
|
444 | 447 |
|
445 |
| - private function processEnum(BackedEnum|UnitEnum|Expression|string|null $value): ?string |
| 448 | + private function processEnum(BackedEnum|UnitEnum|Expression|DateTime|string|null $value): ?string |
446 | 449 | {
|
447 | 450 | if ($value instanceof BackedEnum) {
|
448 | 451 | return $value->value;
|
449 | 452 | } elseif ($value instanceof UnitEnum) {
|
450 | 453 | return $value->name;
|
| 454 | + } elseif ($value instanceof DateTime) { |
| 455 | + return $value->format("Y-m-d-H-i-s"); |
451 | 456 | } elseif ($value instanceof Expression) {
|
452 | 457 | return $this->expressionToString($value);
|
453 | 458 | }
|
|
0 commit comments