From ad41be0eed7b358538beacdc4e02ebcbf5b96ebc Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 28 Mar 2012 22:06:56 -0500 Subject: [PATCH] working on stuff. --- laravel/request.php | 14 +++++++------- laravel/response.php | 3 --- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/laravel/request.php b/laravel/request.php index 81c617b9..c7344ecc 100644 --- a/laravel/request.php +++ b/laravel/request.php @@ -2,13 +2,6 @@ class Request { - /** - * The Symfony HttpFoundation Request instance. - * - * @var HttpFoundation\Request - */ - public static $foundation; - /** * All of the route instances handling the request. * @@ -16,6 +9,13 @@ class Request { */ public static $route; + /** + * The Symfony HttpFoundation Request instance. + * + * @var HttpFoundation\Request + */ + public static $foundation; + /** * The request data key that is used to indicate a spoofed request method. * diff --git a/laravel/response.php b/laravel/response.php index 18953485..a531938d 100644 --- a/laravel/response.php +++ b/laravel/response.php @@ -138,9 +138,6 @@ public static function download($path, $name = null, $headers = array()) /** * Prepare a response from the given value. * - * If the value is not a response, it will be converted into a response - * instance and the content will be cast to a string. - * * @param mixed $response * @return Response */