Total Complexity | 5 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Coverage | 81.82% |
Changes | 0 |
1 | <?php |
||
25 | class Json |
||
26 | { |
||
27 | /** |
||
28 | * @param mixed $value |
||
29 | * |
||
30 | * @return string |
||
31 | * |
||
32 | * @throws JsonException |
||
33 | */ |
||
34 | 34 | public static function encode($value): string |
|
45 | } |
||
46 | |||
47 | /** |
||
48 | * @param string $json |
||
49 | * |
||
50 | * @return mixed |
||
51 | * |
||
52 | * @throws JsonException |
||
53 | */ |
||
54 | 15 | public static function decode(string $json) |
|
65 |