From 718a7479e25fad21819db5ae23216c33e694700f Mon Sep 17 00:00:00 2001 From: Juan Basso Date: Sun, 10 Apr 2016 23:34:01 -0400 Subject: [PATCH] Fixed doc formatting on CakeResponse::cookie Fixed doc to show properly in the documentation. This change was already applied on master. --- lib/Cake/Network/CakeResponse.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/Cake/Network/CakeResponse.php b/lib/Cake/Network/CakeResponse.php index 6815c8c11..2ce9ed148 100644 --- a/lib/Cake/Network/CakeResponse.php +++ b/lib/Cake/Network/CakeResponse.php @@ -1191,9 +1191,6 @@ class CakeResponse { * If the method is called with an array as argument, it will set the cookie * configuration to the cookie container. * - * @param array $options Either null to get all cookies, string for a specific cookie - * or array to set cookie. - * * ### Options (when setting a configuration) * - name: The Cookie name * - value: Value of the cookie @@ -1217,6 +1214,8 @@ class CakeResponse { * * `$this->cookie((array) $options)` * + * @param array $options Either null to get all cookies, string for a specific cookie + * or array to set cookie. * @return mixed */ public function cookie($options = null) {