1 | <?php |
||
13 | final class UnsignedInt |
||
14 | { |
||
15 | /** |
||
16 | * Filters $value to an unsigned integer strictly. |
||
17 | * |
||
18 | * @see \DominionEnterprises\Filter\Ints::filter() |
||
19 | * |
||
20 | * @throws \InvalidArgumentException if $minValue was not greater or equal to zero |
||
21 | */ |
||
22 | public static function filter($value, $allowNull = false, $minValue = null, $maxValue = PHP_INT_MAX) |
||
32 | } |
||
33 |