working on stuff.
This commit is contained in:
parent
89766bef84
commit
ad41be0eed
|
@ -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.
|
||||
*
|
||||
|
|
|
@ -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
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue