← All changes
|
includes/sdk/s3/Psr/Http/Message/ResponseInterface.php
+3
-3
1.2.0
→
1.4.1
View file →
| @@ -26,9 +26,9 @@ | ||
| 26 | 26 | * to understand and satisfy the request. |
| 27 | 27 | * |
| 28 | 28 | * @return int Status code. |
| 29 | 29 | */ |
| 30 | - public function getStatusCode(); | |
| 30 | + public function getStatusCode() : int; | |
| 31 | 31 | /** |
| 32 | 32 | * Return an instance with the specified status code and, optionally, reason phrase. |
| 33 | 33 | * |
| 34 | 34 | * If no reason phrase is specified, implementations MAY choose to default |
| @@ -47,9 +47,9 @@ | ||
| 47 | 47 | * use the defaults as suggested in the HTTP specification. |
| 48 | 48 | * @return static |
| 49 | 49 | * @throws \InvalidArgumentException For invalid status code arguments. |
| 50 | 50 | */ |
| 51 | - public function withStatus($code, $reasonPhrase = ''); | |
| 51 | + public function withStatus(int $code, string $reasonPhrase = '') : ResponseInterface; | |
| 52 | 52 | /** |
| 53 | 53 | * Gets the response reason phrase associated with the status code. |
| 54 | 54 | * |
| 55 | 55 | * Because a reason phrase is not a required element in a response |
| @@ -61,6 +61,6 @@ | ||
| 61 | 61 | * @link http://tools.ietf.org/html/rfc7231#section-6 |
| 62 | 62 | * @link http://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml |
| 63 | 63 | * @return string Reason phrase; must return an empty string if none present. |
| 64 | 64 | */ |
| 65 | - public function getReasonPhrase(); | |
| 65 | + public function getReasonPhrase() : string; | |
| 66 | 66 | } |