コード例 #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
ファイル: LargerThanEqual.php プロジェクト: ehamrin/1dv608
 public function __construct(\int $max, \string $message)
 {
     parent::__construct($message);
     $this->max = $max;
 }