mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
9 lines
134 B
PHP
9 lines
134 B
PHP
<?php
|
|
|
|
class Natural
|
|
{
|
|
public static function isNatural($value) : bool
|
|
{
|
|
return is_int($value) && $value >= 0;
|
|
}
|
|
} |