We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff38951 commit 92d14eaCopy full SHA for 92d14ea
src/Views/Filters/DateRangeFilter.php
@@ -28,7 +28,7 @@ public function getKeys(): array
28
return ['minDate' => '', 'maxDate' => ''];
29
}
30
31
- public function validate(array|string $values): array|bool
+ public function validate(array|string|null $values): array|bool
32
{
33
$this->getOptions();
34
$this->getConfigs();
@@ -197,7 +197,7 @@ public function getFilterPillValue($value): array|string|bool|null
197
return '';
198
199
200
- public function isEmpty(array|string $value): bool
+ public function isEmpty(array|string|null $value): bool
201
202
$values = [];
203
if (is_array($value)) {
0 commit comments