@@ -168,7 +168,7 @@ |
||
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 |
@@ -25,7 +25,7 @@ |
||
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. |