예제 #1
0
파일: LessThan.php 프로젝트: ehamrin/1dv608
 public function __construct(\int $min, \string $message)
 {
     parent::__construct($message);
     $this->min = $min;
 }
예제 #2
0
파일: RegEx.php 프로젝트: ehamrin/1dv608
 public function __construct(\string $regex, \string $message)
 {
     parent::__construct($message);
     $this->regex = $regex;
 }
예제 #3
0
 public function __construct(\int $max, \string $message)
 {
     parent::__construct($message);
     $this->max = $max;
 }