@@ -204,11 +204,11 @@ |
||
204 | 204 | foreach ($keys as $key) { |
205 | 205 | if (is_array($files) && array_key_exists($key, $files)) { |
206 | 206 | /** |
207 | - * @psalm-suppress MixedAssignment |
|
208 | - * |
|
209 | - * Psalm does not support recursive types like: |
|
210 | - * T = array<string, string|T> |
|
211 | - */ |
|
207 | + * @psalm-suppress MixedAssignment |
|
208 | + * |
|
209 | + * Psalm does not support recursive types like: |
|
210 | + * T = array<string, string|T> |
|
211 | + */ |
|
212 | 212 | $files = $files[$key]; |
213 | 213 | } else { |
214 | 214 | throw new OutOfBoundsException('Invalid files key ' . $this->formatKeys($keys)); |
@@ -178,7 +178,7 @@ |
||
178 | 178 | mixed $data, |
179 | 179 | int $code = 200, |
180 | 180 | string $reasonPhrase = '', |
181 | - int $flags = JSON_UNESCAPED_SLASHES | JSON_THROW_ON_ERROR, |
|
181 | + int $flags = JSON_UNESCAPED_SLASHES|JSON_THROW_ON_ERROR, |
|
182 | 182 | ): static { |
183 | 183 | if ($data instanceof Traversable) { |
184 | 184 | $body = json_encode(iterator_to_array($data), $flags); |