예제 #1
0
파일: Text.php 프로젝트: pavlyshyn/orm
 public function __construct($name, $maxLength = null)
 {
     parent::__construct($name);
     $this->maxLength = $maxLength;
 }
예제 #2
0
파일: Datetime.php 프로젝트: pavlyshyn/orm
 public function __construct($name, $format)
 {
     parent::__construct($name);
     $this->format = $format;
 }
예제 #3
0
파일: Boolean.php 프로젝트: pavlyshyn/orm
 public function __construct($name)
 {
     parent::__construct($name);
 }
예제 #4
0
파일: Integer.php 프로젝트: pavlyshyn/orm
 public function __construct($name, $min = null, $max = null)
 {
     parent::__construct($name);
     $this->min = $min;
     $this->max = $max;
 }