@@ -49,7 +49,7 @@ |
||
| 49 | 49 | private function parseJson(?string $string): array |
| 50 | 50 | { |
| 51 | 51 | try { |
| 52 | - $json = json_decode($string, associative: true, flags: JSON_THROW_ON_ERROR); |
|
| 52 | + $json = json_decode($string, associative : true, flags : JSON_THROW_ON_ERROR); |
|
| 53 | 53 | |
| 54 | 54 | // we need this control because json_decode('2', true, 512, JSON_THROW_ON_ERROR) returns a valid result: int(2) |
| 55 | 55 | if (!is_array($json)) { |