Skip to content

Commit 8f0ee40

Browse files
lrljoegithub-actions[bot]
authored andcommitted
Fix styling
1 parent 9a669d1 commit 8f0ee40

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Views/Filters/NumberFilter.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,10 @@ public function validate(float|int|string|array $value): float|int|string|false
2323
return (float) $value;
2424
} elseif (is_int($value)) {
2525
return (int) $value;
26-
} else if (ctype_digit($value)) {
26+
} elseif (ctype_digit($value)) {
2727
return (float) $value;
2828
}
29+
2930
return false;
3031

3132
}

0 commit comments

Comments
 (0)