We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c786fd commit 5897781Copy full SHA for 5897781
README.md
@@ -27,11 +27,11 @@ echo $uri->getUri(); // Get the full URI
27
Only the **(StreamInterface) Body** attribute is required and the rest will auto propagate if you leave them be.
28
```php
29
$request = new Http\Response(
30
- **(StreamInterface) Body,**
31
- (array) Headers,
32
- (int) status,
33
- (?string) phrase,
34
- (?string) version
+ StreamInterface $body,
+ ?HeadersInterface $headers = null,
+ int $status = 200,
+ ?string $phrase = null,
+ ?string $version = null
35
);
36
```
37
#### Get Status code
0 commit comments