Completed
Push — v3 ( b80e18...82e8cc )
by Mihail
14:03
created
Client/PhpClient.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@
 block discarded – undo
168 168
     protected function extractFromResponseHeaders($response, &$headers, &$statusCode): void
169 169
     {
170 170
         try {
171
-            $_headers   = stream_get_meta_data($response)['wrapper_data'] ?? [];
171
+            $_headers = stream_get_meta_data($response)['wrapper_data'] ?? [];
172 172
             /*
173 173
              * HTTP status may not always be the first header in the response headers,
174 174
              * for example, if the stream follows one or multiple redirects, the last
Please login to merge, or discard this patch.
ServerRequest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
     protected array  $attributes     = [];
26 26
     protected array  $queryParams    = [];
27 27
 
28
-    protected object|array|null $parsedBody = null;
28
+    protected object | array | null $parsedBody = null;
29 29
 
30 30
     /**
31 31
      * ServerRequest constructor.
Please login to merge, or discard this patch.