Conditions | 4 |
Paths | 3 |
Total Lines | 12 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 4 |
Changes | 0 |
1 | <?php |
||
54 | 27 | public function parseValue($value) |
|
55 | { |
||
56 | 27 | if ($value === null || $value === '') { |
|
57 | 3 | return null; |
|
58 | } |
||
59 | |||
60 | // Return floats, integers, booleans or arrays if possible |
||
61 | 24 | if (null !== $decoded = json_decode($value, true)) { |
|
62 | 21 | return $decoded; |
|
63 | } |
||
64 | |||
65 | 3 | return $value; |
|
66 | } |
||
68 |