| Total Complexity | 1 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | class JsonDecoder extends BaseJsonDecoder |
||
| 12 | { |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @param string $data |
||
| 16 | * |
||
| 17 | * @param bool $assoc |
||
| 18 | * @param int $depth |
||
| 19 | * @param int $options |
||
| 20 | * |
||
| 21 | * @return array |
||
| 22 | */ |
||
| 23 | public static function decode(string $data, bool $assoc = false, int $depth = 512, int $options = 0): array |
||
| 29 |