Total Complexity | 6 |
Total Lines | 53 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | class NumberModel extends ColumnModel |
||
14 | { |
||
15 | |||
16 | private $max; |
||
17 | private $min; |
||
18 | private $step; |
||
19 | |||
20 | /** |
||
21 | * @return mixed |
||
22 | */ |
||
23 | public function getStep() |
||
24 | { |
||
25 | return $this->step; |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * @param mixed $step |
||
30 | */ |
||
31 | public function setStep($step): void |
||
32 | { |
||
33 | $this->step = $step; |
||
34 | } |
||
35 | |||
36 | /** |
||
37 | * @return mixed |
||
38 | */ |
||
39 | public function getMax() |
||
40 | { |
||
41 | return $this->max; |
||
42 | } |
||
43 | |||
44 | /** |
||
45 | * @param mixed $max |
||
46 | */ |
||
47 | public function setMax($max): void |
||
50 | } |
||
51 | |||
52 | /** |
||
53 | * @return mixed |
||
54 | */ |
||
55 | public function getMin() |
||
58 | } |
||
59 | |||
60 | /** |
||
61 | * @param mixed $min |
||
62 | */ |
||
63 | public function setMin($min): void |
||
66 | } |
||
67 | |||
68 | } |