snappymail/rainloop/v/0.0.0/app/libraries/MailSo/Base/Validator.php
djmaze 1009398d0c Cleanup MailSo Validator
Cleanup removed features
2020-03-20 14:53:12 +01:00

29 lines
582 B
PHP

<?php
/*
* This file is part of MailSo.
*
* (c) 2014 Usenko Timur
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace MailSo\Base;
/**
* @category MailSo
* @package Base
*/
class Validator
{
public static function RangeInt(int $iNumber, int $iMin = null, int $iMax = null) : bool
{
return (null === $iMin || $iNumber >= $iMin) && (null === $iMax || $iNumber <= $iMax);
}
public static function PortInt(int $iPort) : bool
{
return static::RangeInt($iPort, 0, 65535);
}
}