Completed
Push — master ( 16e6fb...c8db4c )
by Bohuslav
02:34
created
src/Uri.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -702,7 +702,7 @@
 block discarded – undo
702 702
     {
703 703
         return preg_replace_callback(
704 704
             '/(?:[^a-zA-Z0-9_\-\.~:@&=\+\$,\/;%]+|%(?![A-Fa-f0-9]{2}))/',
705
-            function ($match) {
705
+            function($match) {
706 706
                 return rawurlencode($match[0]);
707 707
             },
708 708
             $path
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.
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.