Conditions | 3 |
Paths | 3 |
Total Lines | 13 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 3.2098 |
Changes | 3 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
4189 | 5 | public static function json_encode($value, int $options = 0, int $depth = 512) |
|
4190 | { |
||
4191 | 5 | $value = self::filter($value); |
|
4192 | |||
4193 | 5 | if (self::$SUPPORT['json'] === false) { |
|
4194 | throw new \RuntimeException('ext-json: is not installed'); |
||
4195 | } |
||
4196 | |||
4197 | 5 | if ($depth < 1) { |
|
4198 | $depth = 1; |
||
4199 | } |
||
4200 | |||
4201 | 5 | return \json_encode($value, $options, $depth); |
|
4202 | } |
||
13722 |