Conditions | 7 |
Paths | 7 |
Total Lines | 20 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
64 | protected function cast($value) |
||
65 | { |
||
66 | if (is_null($value)) { |
||
67 | return $value; |
||
68 | } |
||
69 | |||
70 | switch ($this->getCastType($this->getName())) { |
||
71 | case 'int': |
||
72 | case 'integer': |
||
73 | return (int) $value; |
||
74 | |||
75 | case 'real': |
||
76 | case 'float': |
||
77 | case 'double': |
||
78 | return (float) $value; |
||
79 | |||
80 | default: |
||
81 | $value; |
||
82 | } |
||
83 | } |
||
84 | |||
97 |