コード例 #1
0
ファイル: Compare.php プロジェクト: krisldz/Gekosale2
 public function __construct($errorMsg, $compareWith)
 {
     parent::__construct($errorMsg);
     $this->_compareWith = $compareWith;
 }
コード例 #2
0
ファイル: Format.php プロジェクト: krisldz/Gekosale2
 public function __construct($errorMsg, $format)
 {
     parent::__construct($errorMsg);
     $this->_format = $format;
 }
コード例 #3
0
ファイル: MinLength.php プロジェクト: krisldz/Gekosale2
 public function __construct($errorMsg, $length)
 {
     parent::__construct($errorMsg);
     $this->_length = $length;
 }
コード例 #4
0
 public function __construct($errorMsg, $field, $condition)
 {
     parent::__construct($errorMsg);
     $this->_field = $field;
     $this->_condition = $condition;
 }
コード例 #5
0
ファイル: Custom.php プロジェクト: krisldz/Gekosale2
 public function __construct($errorMsg, $checkFunctionCallback, $params = array())
 {
     parent::__construct($errorMsg);
     $this->_checkFunction = $checkFunctionCallback;
     $this->_params = $params;
 }