Skip to content

Commit c3da95b

Browse files
committed
handle datetime objects as values for whereIn and whereBetween queries where multiple where values are DateTime instances
1 parent a38c905 commit c3da95b

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

src/CacheKey.php

+11-6
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
use Illuminate\Support\Str;
1212
use Ramsey\Uuid\Uuid;
1313
use UnitEnum;
14+
use DateTime;
1415

1516
class CacheKey
1617
{
@@ -99,7 +100,12 @@ protected function getColumnClauses(array $where) : string
99100

100101
protected function getCurrentBinding(string $type, $bindingFallback = null)
101102
{
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;
103109
}
104110

105111
protected function getHavingClauses()
@@ -321,10 +327,7 @@ protected function getValuesClause(array $where = []) : string
321327

322328
protected function getValuesFromWhere(array $where) : string
323329
{
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) {
328331
return $where["value"]->format("Y-m-d-H-i-s");
329332
}
330333

@@ -442,12 +445,14 @@ protected function recursiveImplode(array $items, string $glue = ",") : string
442445
return $result;
443446
}
444447

445-
private function processEnum(BackedEnum|UnitEnum|Expression|string|null $value): ?string
448+
private function processEnum(BackedEnum|UnitEnum|Expression|DateTime|string|null $value): ?string
446449
{
447450
if ($value instanceof BackedEnum) {
448451
return $value->value;
449452
} elseif ($value instanceof UnitEnum) {
450453
return $value->name;
454+
} elseif ($value instanceof DateTime) {
455+
return $value->format("Y-m-d-H-i-s");
451456
} elseif ($value instanceof Expression) {
452457
return $this->expressionToString($value);
453458
}

0 commit comments

Comments
 (0)