Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

[PSR-7] Removes trailing spaces from proposal #351

Merged
merged 1 commit into from
Oct 14, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions proposed/http-message.md
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ interface IncomingRequestInterface extends RequestInterface
*
* The return value can be either an array or an object that acts like
* an array (e.g., implements ArrayAccess, or an ArrayObject).
*
*
* @return array|\ArrayAccess
*/
public function getCookieParams();
Expand All @@ -395,9 +395,9 @@ interface IncomingRequestInterface extends RequestInterface
*
* The value provided should be an array or array-like object
* (e.g., implements ArrayAccess, or an ArrayObject).
*
*
* @param array|\ArrayAccess $cookies Cookie values/structs
*
*
* @return void
*/
public function setCookieParams($cookies);
Expand All @@ -413,7 +413,7 @@ interface IncomingRequestInterface extends RequestInterface
*
* The return value can be either an array or an object that acts like
* an array (e.g., implements ArrayAccess, or an ArrayObject).
*
*
* @return array
*/
public function getQueryParams();
Expand All @@ -430,7 +430,7 @@ interface IncomingRequestInterface extends RequestInterface
*
* The return value can be either an array or an object that acts like
* an array (e.g., implements ArrayAccess, or an ArrayObject).
*
*
* @return array Upload file(s) metadata, if any.
*/
public function getFileParams();
Expand All @@ -444,7 +444,7 @@ interface IncomingRequestInterface extends RequestInterface
*
* In other cases, the parent getBody() method should be used to retrieve
* the body content.
*
*
* @return array|object The deserialized body parameters, if any. These may
* be either an array or an object, though an array or
* array-like object is recommended.
Expand All @@ -457,7 +457,7 @@ interface IncomingRequestInterface extends RequestInterface
* If the body content can be deserialized, the values obtained may then
* be injected into the response using this method. This method will
* typically be invoked by a factory marshaling request parameters.
*
*
* @param array|object $values The deserialized body parameters, if any.
* These may be either an array or an object,
* though an array or array-like object is
Expand All @@ -484,7 +484,7 @@ interface IncomingRequestInterface extends RequestInterface
* If a router or similar is used to match against the path and/or request,
* this method can be used to inject the request with the results, so long
* as those results can be represented as an array or array-like object.
*
*
* @param array|\ArrayAccess $values Path parameters matched by routing
*
* @return void
Expand Down