Example #1
0
 public function __construct($name, $maxLength = null)
 {
     parent::__construct($name);
     $this->maxLength = $maxLength;
 }
Example #2
0
 public function __construct($name, $format)
 {
     parent::__construct($name);
     $this->format = $format;
 }
Example #3
0
 public function __construct($name)
 {
     parent::__construct($name);
 }
Example #4
0
 public function __construct($name, $min = null, $max = null)
 {
     parent::__construct($name);
     $this->min = $min;
     $this->max = $max;
 }