From b3d4beafe4e7090c28f91beb0cbae82347e954c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1gi-Kaz=C3=A1r=20M=C3=A1rk?= Date: Tue, 14 Oct 2014 00:56:38 +0200 Subject: [PATCH] Removes trailing spaces from proposal --- proposed/http-message.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/proposed/http-message.md b/proposed/http-message.md index 2ac20e35d..87c739b2d 100644 --- a/proposed/http-message.md +++ b/proposed/http-message.md @@ -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(); @@ -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); @@ -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(); @@ -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(); @@ -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. @@ -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 @@ -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