Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| Integers | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
2 | |
100.00% |
1 / 1 |
| isInt | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
2 | |||
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace Projom\Util; |
| 6 | |
| 7 | class Integers |
| 8 | { |
| 9 | public static function isInt(string|int|float $subject): bool |
| 10 | { |
| 11 | $subject = (string) $subject; |
| 12 | return is_numeric($subject) && strpos($subject, '.') === false; |
| 13 | } |
| 14 | } |