Conditions | 5 |
Paths | 5 |
Total Lines | 16 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
43 | public static function varToString($variable) |
||
44 | { |
||
45 | if (null === $variable) { |
||
46 | return 'null'; |
||
47 | } |
||
48 | |||
49 | if (is_bool($variable)) { |
||
50 | return (true === $variable) ? 'true' : 'false'; |
||
51 | } |
||
52 | |||
53 | if (is_array($variable)) { |
||
54 | return '[]'; |
||
55 | } |
||
56 | |||
57 | return (string) $variable; |
||
58 | } |
||
59 | } |
||
60 |