| 1 | <?php |
||
| 8 | class Input extends NamedElement |
||
| 9 | { |
||
| 10 | protected $maxLength; |
||
| 11 | protected $minLength = 0; |
||
| 12 | |||
| 13 | protected function getModelFieldLength() |
||
| 21 | |||
| 22 | protected function getModelColumn() |
||
| 28 | |||
| 29 | public function getMaxLength() |
||
| 37 | |||
| 38 | public function setMaxLength($value) |
||
| 44 | |||
| 45 | public function getMinLength() |
||
| 49 | |||
| 50 | public function setMinLength($value) |
||
| 56 | |||
| 57 | public function toArray() |
||
| 64 | } |
||
| 65 |