Passed
Branch master (25a7ff)
by Rasul
07:44
created
Category
src/ServerRequest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
         $this->parsedBody = $body;
39 39
         $this->serverParams = $serverParams;
40 40
         $this->cookieParams = $cookieParams;
41
-        $this->uploadedFiles =  $files;
41
+        $this->uploadedFiles = $files;
42 42
         $this->attributes = $attributes;
43 43
     }
44 44
     
Please login to merge, or discard this patch.
src/Factory/ServerRequestFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
 {
15 15
     public function createServerRequest(string $method, $uri, array $serverParams = []): ServerRequestInterface
16 16
     {
17
-        return new ServerRequest($method, $uri,'1.1', [], [], [], $serverParams);
17
+        return new ServerRequest($method, $uri, '1.1', [], [], [], $serverParams);
18 18
     }
19 19
 
20 20
     public function fromGlobals(): ServerRequest
Please login to merge, or discard this patch.