|
@@ -3,18 +3,18 @@
|
|
|
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.
|