RequestDataCollector
class RequestDataCollector extends DataCollector implements EventSubscriberInterface, LateDataCollectorInterface
Properties
protected | $data | from DataCollector | |
protected | $controllers |
Methods
Converts the variable into a serializable Data instance.
No description
Collects data as late as possible.
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
No description
Gets the route name.
No description
Gets the route parameters.
Gets the parsed controller.
Gets the previous request attributes.
No description
Returns an array of event names this subscriber wants to listen to.
Returns the name of the collector.
Parse a controller.
Details
protected Data
cloneVar(mixed $var)
Converts the variable into a serializable Data instance.
This array can be displayed in the template using the VarDumper component.
collect(Request $request, Response $response, Exception $exception = null)
Collects data for the given Request and Response.
string
getRoute()
Gets the route name.
The _route request attributes is automatically set by the Router Matcher.
array
getRouteParams()
Gets the route parameters.
The _route_params request attributes is automatically set by the RouterListener.
static array
getSubscribedEvents()
Returns an array of event names this subscriber wants to listen to.
The array keys are event names and the value can be:
- The method name to call (priority defaults to 0)
- An array composed of the method name to call and the priority
- An array of arrays composed of the method names to call and respective priorities, or 0 if unset
For instance:
- array('eventName' => 'methodName')
- array('eventName' => array('methodName', $priority))
- array('eventName' => array(array('methodName1', $priority), array('methodName2')))