Total Complexity | 8 |
Total Lines | 71 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | class MoneyModel extends ColumnModel |
||
14 | { |
||
15 | |||
16 | private $precision; |
||
17 | private $thousands; |
||
18 | private $decimal; |
||
19 | private $prefix; |
||
20 | |||
21 | /** |
||
22 | * @return mixed |
||
23 | */ |
||
24 | public function getPrefix() |
||
25 | { |
||
26 | return $this->prefix; |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * @param mixed $prefix |
||
31 | */ |
||
32 | public function setPrefix($prefix) |
||
33 | { |
||
34 | $this->prefix = $prefix; |
||
35 | } |
||
36 | |||
37 | |||
38 | /** |
||
39 | * @return mixed |
||
40 | */ |
||
41 | public function getPrecision() |
||
42 | { |
||
43 | return $this->precision; |
||
44 | } |
||
45 | |||
46 | /** |
||
47 | * @param mixed $precision |
||
48 | */ |
||
49 | public function setPrecision($precision) |
||
52 | } |
||
53 | |||
54 | /** |
||
55 | * @return mixed |
||
56 | */ |
||
57 | public function getThousands() |
||
58 | { |
||
59 | return $this->thousands; |
||
60 | } |
||
61 | |||
62 | /** |
||
63 | * @param mixed $thousands |
||
64 | */ |
||
65 | public function setThousands($thousands) |
||
66 | { |
||
67 | $this->thousands = $thousands; |
||
68 | } |
||
69 | |||
70 | /** |
||
71 | * @return mixed |
||
72 | */ |
||
73 | public function getDecimal() |
||
76 | } |
||
77 | |||
78 | /** |
||
79 | * @param mixed $decimal |
||
80 | */ |
||
81 | public function setDecimal($decimal) |
||
88 | } |