PluginProbe
Media Cloud Sync / 1.4.1
Media Cloud Sync v1.4.1
1.4.1 1.4.0 1.3.12 1.3.11 1.3.10 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 1.2.0 1.2.10 1.2.11 1.2.12 1.2.13 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 All 35 releases
← All changes | includes/sdk/s3/Psr/Http/Message/ResponseInterface.php +3 -3 1.2.61.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 }