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