Completed
Push — master ( 9e1c2f...16e6fb )
by Bohuslav
03:00
created
src/ServerRequest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 // \HttpMessage
13 13
 use Kambo\HttpMessage\Uri;
14 14
 use Kambo\HttpMessage\Message;
15
-use Kambo\HttpMessage\UploadedFile;
16 15
 use Kambo\HttpMessage\Headers;
17 16
 use Kambo\HttpMessage\Parser\Parser;
18 17
 use Kambo\HttpMessage\RequestTrait;
Please login to merge, or discard this patch.
src/Response.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 // \HttpMessage
12 12
 use Kambo\HttpMessage\Message;
13 13
 use Kambo\HttpMessage\Headers;
14
-use Kambo\HttpMessage\Stream;
15 14
 
16 15
 /**
17 16
  * Representation of an outgoing, server-side response.
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@
 block discarded – undo
122 122
         parent::__construct($headers, $body);
123 123
         $this->validateStatus($status);
124 124
 
125
-        $this->status  = $status;
125
+        $this->status = $status;
126 126
     }
127 127
 
128 128
     /**
Please login to merge, or discard this patch.
src/Request.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
         }
75 75
 
76 76
         $this->validateMethod($requestMethod);
77
-        $this->requestMethod   = $requestMethod;
77
+        $this->requestMethod = $requestMethod;
78 78
 
79 79
         if ($this->uri->getHost() !== '' && (!$this->hasHeader('Host') || $this->getHeader('Host') === null)) {
80 80
             $this->headers->set('Host', $this->uri->getHost());
Please login to merge, or discard this patch.