Skip to content

Commit f7ffed0

Browse files
authored
Merge pull request #176 from codebar-ag/feature-styles
WIP
2 parents df88b47 + 15b451b commit f7ffed0

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
},
3737
"require-dev": {
3838
"laravel/pint": "^1.14",
39-
"nunomaduro/larastan": "^2.9",
39+
"larastan/larastan": "^2.9",
4040
"orchestra/testbench": "^9.0",
4141
"pestphp/pest": "^2.34",
4242
"phpstan/extension-installer": "^1.3",

src/DTO/Documents/DocumentIndex/IndexDetectDTO.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ public static function make(string $name, mixed $value)
1818
is_int($value) => IndexNumericDTO::make($name, $value),
1919
is_float($value) => IndexDecimalDTO::make($name, $value),
2020
$value instanceof Carbon => IndexDateTimeDTO::make($name, $value),
21+
$value instanceof \Carbon\Carbon => IndexDateTimeDTO::make($name, $value),
2122
default => null,
2223
};
2324
}

0 commit comments

Comments
 (0)