← All changes
|
includes/sdk/google/psr/http-message/src/ResponseInterface.php
+4
-4
1.2.2
→
1.4.1
View file →
| @@ -1,7 +1,7 @@ | ||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -namespace Dudlewebs\WPMCS\Psr\Http\Message; | |
| 3 | +namespace Dudlewebs\WPMCS\GCP\Psr\Http\Message; | |
| 4 | 4 | |
| 5 | 5 | /** |
| 6 | 6 | * Representation of an outgoing, server-side response. |
| 7 | 7 | * |
| @@ -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(): int; | |
| 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(int $code, string $reasonPhrase = ''): ResponseInterface; | |
| 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(): string; | |
| 65 | + public function getReasonPhrase() : string; | |
| 66 | 66 | } |