Passed
Push — master ( 4ccf8a...0a732e )
by Anatoly
02:58 queued 15s
created
functions/server_request_files.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
 {
29 29
     $files ??= $_FILES;
30 30
 
31
-    $walker = static function ($path, $size, $error, $name, $type) use (&$walker) {
31
+    $walker = static function($path, $size, $error, $name, $type) use (&$walker) {
32 32
         if (!is_array($path)) {
33 33
             $stream = $error === UPLOAD_ERR_OK ? new FileStream($path, 'rb') : null;
34 34
 
Please login to merge, or discard this patch.
src/ServerRequest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -314,7 +314,7 @@
 block discarded – undo
314 314
             return;
315 315
         }
316 316
 
317
-        array_walk_recursive($files, /** @param mixed $file */ static function ($file): void {
317
+        array_walk_recursive($files, /** @param mixed $file */ static function($file): void {
318 318
             if (!($file instanceof UploadedFileInterface)) {
319 319
                 throw new InvalidArgumentException('Invalid uploaded file');
320 320
             }
Please login to merge, or discard this patch.