mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-13 18:48:40 +00:00
9 lines
138 B
PHP
9 lines
138 B
PHP
<?php
|
|
|
|
class Natural implements Number
|
|
{
|
|
public static function isNatural($value) : bool
|
|
{
|
|
return is_int($value) && $value >= 0;
|
|
}
|
|
} |