示例#1
0
文件: Integer.php 项目: serby/Atrox
 public function __construct($name, $description = null)
 {
     parent::__construct($name, $description);
 }
示例#2
0
文件: String.php 项目: serby/Atrox
 public function __construct($name, $description = null)
 {
     parent::__construct($name, $description);
     $this->setInputFormatter(new Atrox_Core_Data_Formatter_Trim());
 }
示例#3
0
 public function __construct($name, $description = null)
 {
     parent::__construct($name, $description);
     $this->addValidator(new Atrox_Core_Data_Validator_Integer());
 }