Example #1
0
 function __construct($value)
 {
     parent::__construct($value);
     $this->ifIsEqualTo(new risingsun\ointeger\unsigned(), function () {
         throw new \domainException('Decimal part precision must be greater than 0');
     });
 }
Example #2
0
 function __construct($value)
 {
     $exception = null;
     try {
         parent::__construct($value);
     } catch (\domainException $exception) {
     }
     if ($exception || $value === 0) {
         throw new \domainException('String offset should be an integer greater than or equal to 0');
     }
 }
Example #3
0
 static function validate($value)
 {
     return parent::validate($value) && self::isHttpStatus($value);
 }