示例#1
0
文件: Text.php 项目: pavlyshyn/orm
 public function __construct($name, $maxLength = null)
 {
     parent::__construct($name);
     $this->maxLength = $maxLength;
 }
示例#2
0
 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;
 }