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 a863732 commit 28efa5aCopy full SHA for 28efa5a
src/Views/Filters/Traits/IsNumericFilter.php
@@ -6,7 +6,7 @@ trait IsNumericFilter
6
{
7
public function isEmpty(float|int|string|array|null $value): bool
8
9
- return ! is_null($value) ? ($this->validate($value) == false) : true;
+ return ! is_null($value) ? ($this->validate($value) === false) : true;
10
}
11
12
/**
0 commit comments