| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 36 | public static function decode($string) |
||
| 37 | { |
||
| 38 | if (! is_string($string)) { |
||
| 39 | throw new JsonException('Json decode parameter must be a string'); |
||
| 40 | } |
||
| 41 | |||
| 42 | $result = json_decode($string, true); |
||
| 43 | |||
| 44 | if ($result === null) { |
||
| 45 | throw new JsonException('Json decode error'); |
||
| 46 | } |
||
| 47 | return $result; |
||
| 48 | } |
||
| 50 |