Passed
Push — main ( 682960...085d3b )
by Thomas
02:23
created
src/Request.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -204,11 +204,11 @@
 block discarded – undo
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));
Please login to merge, or discard this patch.
src/Response.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -178,7 +178,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.