Completed
Push — master ( 9e1c2f...16e6fb )
by Bohuslav
03:00
created
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.
src/Response.php 1 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.