Total Complexity | 4 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | trait Json |
||
15 | { |
||
16 | /** |
||
17 | * JSON Encode or fallback to value |
||
18 | * @return string|false |
||
19 | */ |
||
20 | public function jsonEncode($value, int $flags = JSON_UNESCAPED_SLASHES, int $depth = 512) |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * JSON Decode or fallback to value |
||
27 | * @return mixed|string |
||
28 | */ |
||
29 | public function jsonDecode(string $json, ?bool $associative = null, int $depth = 512, int $flags = 0) |
||
34 |