Skip to content

Commit

Permalink
Update IsNumericFilter.php
Browse files Browse the repository at this point in the history
Fixes issues 2229
  • Loading branch information
G4Zz0L1 authored Mar 4, 2025
1 parent a863732 commit 28efa5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Views/Filters/Traits/IsNumericFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ trait IsNumericFilter
{
public function isEmpty(float|int|string|array|null $value): bool
{
return ! is_null($value) ? ($this->validate($value) == false) : true;
return ! is_null($value) ? ($this->validate($value) === false) : true;
}

/**
Expand Down

0 comments on commit 28efa5a

Please sign in to comment.