Browse Source

working on stuff.

Taylor Otwell 13 years ago
parent
commit
ad41be0eed
2 changed files with 6 additions and 9 deletions
  1. 6 6
      laravel/request.php
  2. 0 3
      laravel/response.php

+ 6 - 6
laravel/request.php

@@ -3,18 +3,18 @@
 class Request {
 class Request {
 
 
 	/**
 	/**
-	 * The Symfony HttpFoundation Request instance.
+	 * All of the route instances handling the request.
 	 *
 	 *
-	 * @var HttpFoundation\Request
+	 * @var array
 	 */
 	 */
-	public static $foundation;
+	public static $route;
 
 
 	/**
 	/**
-	 * All of the route instances handling the request.
+	 * The Symfony HttpFoundation Request instance.
 	 *
 	 *
-	 * @var array
+	 * @var HttpFoundation\Request
 	 */
 	 */
-	public static $route;
+	public static $foundation;
 
 
 	/**
 	/**
 	 * The request data key that is used to indicate a spoofed request method.
 	 * The request data key that is used to indicate a spoofed request method.

+ 0 - 3
laravel/response.php

@@ -138,9 +138,6 @@ class Response {
 	/**
 	/**
 	 * Prepare a response from the given value.
 	 * 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
 	 * @param  mixed     $response
 	 * @return Response
 	 * @return Response
 	 */
 	 */