From b9f6cac03395c6bc5662d66c002e5eeb8c3f5ba4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Pineau?= Date: Fri, 2 Nov 2012 11:47:11 +0100 Subject: [PATCH] [2.1][HttpFoundation] Fixed Php doc in Request::get --- src/Symfony/Component/HttpFoundation/Request.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/HttpFoundation/Request.php b/src/Symfony/Component/HttpFoundation/Request.php index 9254693389..52a2df0635 100644 --- a/src/Symfony/Component/HttpFoundation/Request.php +++ b/src/Symfony/Component/HttpFoundation/Request.php @@ -508,7 +508,7 @@ class Request * * This method is mainly useful for libraries that want to provide some flexibility. * - * Order of precedence: GET, PATH, POST, COOKIE + * Order of precedence: GET, PATH, POST * * Avoid using this method in controllers: * @@ -516,7 +516,7 @@ class Request * * prefer to get from a "named" source * * It is better to explicitly get request parameters from the appropriate - * public property instead (query, request, attributes, ...). + * public property instead (query, attributes, request). * * @param string $key the key * @param mixed $default the default value