@@ -23,7 +23,7 @@ interface IncomingRequestInterface extends RequestInterface
2323 *
2424 * The return value can be either an array or an object that acts like
2525 * an array (e.g., implements ArrayAccess, or an ArrayObject).
26- *
26+ *
2727 * @return array|\ArrayAccess
2828 */
2929 public function getCookieParams ();
@@ -39,9 +39,9 @@ public function getCookieParams();
3939 *
4040 * The value provided should be an array or array-like object
4141 * (e.g., implements ArrayAccess, or an ArrayObject).
42- *
42+ *
4343 * @param array|\ArrayAccess $cookies Cookie values/structs
44- *
44+ *
4545 * @return void
4646 */
4747 public function setCookieParams ($ cookies );
@@ -57,7 +57,7 @@ public function setCookieParams($cookies);
5757 *
5858 * The return value can be either an array or an object that acts like
5959 * an array (e.g., implements ArrayAccess, or an ArrayObject).
60- *
60+ *
6161 * @return array
6262 */
6363 public function getQueryParams ();
@@ -74,7 +74,7 @@ public function getQueryParams();
7474 *
7575 * The return value can be either an array or an object that acts like
7676 * an array (e.g., implements ArrayAccess, or an ArrayObject).
77- *
77+ *
7878 * @return array Upload file(s) metadata, if any.
7979 */
8080 public function getFileParams ();
@@ -88,7 +88,7 @@ public function getFileParams();
8888 *
8989 * In other cases, the parent getBody() method should be used to retrieve
9090 * the body content.
91- *
91+ *
9292 * @return array|object The deserialized body parameters, if any. These may
9393 * be either an array or an object, though an array or
9494 * array-like object is recommended.
@@ -101,7 +101,7 @@ public function getBodyParams();
101101 * If the body content can be deserialized, the values obtained may then
102102 * be injected into the response using this method. This method will
103103 * typically be invoked by a factory marshaling request parameters.
104- *
104+ *
105105 * @param array|object $values The deserialized body parameters, if any.
106106 * These may be either an array or an object,
107107 * though an array or array-like object is
@@ -128,7 +128,7 @@ public function getPathParams();
128128 * If a router or similar is used to match against the path and/or request,
129129 * this method can be used to inject the request with the results, so long
130130 * as those results can be represented as an array or array-like object.
131- *
131+ *
132132 * @param array|\ArrayAccess $values Path parameters matched by routing
133133 *
134134 * @return void
0 commit comments