@@ -23,7 +23,7 @@ interface IncomingRequestInterface extends RequestInterface
23
23
*
24
24
* The return value can be either an array or an object that acts like
25
25
* an array (e.g., implements ArrayAccess, or an ArrayObject).
26
- *
26
+ *
27
27
* @return array|\ArrayAccess
28
28
*/
29
29
public function getCookieParams ();
@@ -39,9 +39,9 @@ public function getCookieParams();
39
39
*
40
40
* The value provided should be an array or array-like object
41
41
* (e.g., implements ArrayAccess, or an ArrayObject).
42
- *
42
+ *
43
43
* @param array|\ArrayAccess $cookies Cookie values/structs
44
- *
44
+ *
45
45
* @return void
46
46
*/
47
47
public function setCookieParams ($ cookies );
@@ -57,7 +57,7 @@ public function setCookieParams($cookies);
57
57
*
58
58
* The return value can be either an array or an object that acts like
59
59
* an array (e.g., implements ArrayAccess, or an ArrayObject).
60
- *
60
+ *
61
61
* @return array
62
62
*/
63
63
public function getQueryParams ();
@@ -74,7 +74,7 @@ public function getQueryParams();
74
74
*
75
75
* The return value can be either an array or an object that acts like
76
76
* an array (e.g., implements ArrayAccess, or an ArrayObject).
77
- *
77
+ *
78
78
* @return array Upload file(s) metadata, if any.
79
79
*/
80
80
public function getFileParams ();
@@ -88,7 +88,7 @@ public function getFileParams();
88
88
*
89
89
* In other cases, the parent getBody() method should be used to retrieve
90
90
* the body content.
91
- *
91
+ *
92
92
* @return array|object The deserialized body parameters, if any. These may
93
93
* be either an array or an object, though an array or
94
94
* array-like object is recommended.
@@ -101,7 +101,7 @@ public function getBodyParams();
101
101
* If the body content can be deserialized, the values obtained may then
102
102
* be injected into the response using this method. This method will
103
103
* typically be invoked by a factory marshaling request parameters.
104
- *
104
+ *
105
105
* @param array|object $values The deserialized body parameters, if any.
106
106
* These may be either an array or an object,
107
107
* though an array or array-like object is
@@ -128,7 +128,7 @@ public function getPathParams();
128
128
* If a router or similar is used to match against the path and/or request,
129
129
* this method can be used to inject the request with the results, so long
130
130
* as those results can be represented as an array or array-like object.
131
- *
131
+ *
132
132
* @param array|\ArrayAccess $values Path parameters matched by routing
133
133
*
134
134
* @return void
0 commit comments