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 |
||
4174 | 5 | public static function json_encode($value, int $options = 0, int $depth = 512) |
|
4175 | { |
||
4176 | 5 | $value = self::filter($value); |
|
4177 | |||
4178 | 5 | if (self::$SUPPORT['json'] === false) { |
|
4179 | throw new \RuntimeException('ext-json: is not installed'); |
||
4180 | } |
||
4181 | |||
4182 | 5 | if ($depth < 1) { |
|
4183 | $depth = 1; |
||
4184 | } |
||
4185 | |||
4186 | 5 | return \json_encode($value, $options, $depth); |
|
4187 | } |
||
13694 |