Skip to content

Commit 28efa5a

Browse files
authored
Update IsNumericFilter.php
Fixes issues 2229
1 parent a863732 commit 28efa5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Views/Filters/Traits/IsNumericFilter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ trait IsNumericFilter
66
{
77
public function isEmpty(float|int|string|array|null $value): bool
88
{
9-
return ! is_null($value) ? ($this->validate($value) == false) : true;
9+
return ! is_null($value) ? ($this->validate($value) === false) : true;
1010
}
1111

1212
/**

0 commit comments

Comments
 (0)