Commit ad41be0e authored by Taylor Otwell's avatar Taylor Otwell

working on stuff.

parent 89766bef
...@@ -3,18 +3,18 @@ ...@@ -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.
......
...@@ -138,9 +138,6 @@ class Response { ...@@ -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
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment