1 | <?php |
||
5 | class Number extends NamedElement |
||
6 | { |
||
7 | protected $type = 'number'; |
||
8 | |||
9 | protected $max; |
||
10 | protected $min = 0; |
||
11 | protected $step = 1; |
||
12 | |||
13 | public function getMax() |
||
17 | |||
18 | public function setMax($value) |
||
26 | |||
27 | public function getMin() |
||
31 | |||
32 | public function setMin($value) |
||
40 | |||
41 | public function setStep($value) |
||
47 | |||
48 | protected function getDefaultValidationRules() |
||
54 | |||
55 | public function toArray() |
||
63 | } |
||
64 |