예제 #1
0
파일: Integer.php 프로젝트: rendix2/QW_MVS
 public function __construct($integer)
 {
     parent::__construct();
     if (!Validator::isInt($integer)) {
         throw new IllegalArgumentException();
     }
     $this->integer = $integer;
 }