public function __construct($name, $maxLength = null) { parent::__construct($name); $this->maxLength = $maxLength; }
public function __construct($name, $format) { parent::__construct($name); $this->format = $format; }
public function __construct($name) { parent::__construct($name); }
public function __construct($name, $min = null, $max = null) { parent::__construct($name); $this->min = $min; $this->max = $max; }