| Conditions | 6 |
| Paths | 5 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | protected function convertBoolean($parameterValue) |
||
| 36 | { |
||
| 37 | if (is_string($parameterValue)) { |
||
| 38 | return $parameterValue; |
||
| 39 | } |
||
| 40 | |||
| 41 | if (is_int($parameterValue) || is_float($parameterValue)) { |
||
| 42 | return 0 === $parameterValue ? 'false' : 'true'; |
||
| 43 | } |
||
| 44 | |||
| 45 | return $parameterValue ? 'true' : 'false'; |
||
| 46 | } |
||
| 47 | } |
||
| 48 |