class RequestDataCollector extends DataCollector implements EventSubscriberInterface, LateDataCollectorInterface
protected | $data | from DataCollector | |
protected | $controllers |
serialize() | from DataCollector | |
unserialize($data) | from DataCollector | |
Data | cloneVar(mixed $var) Converts the variable into a serializable Data instance. | from DataCollector |
callable[] | getCasters() | from DataCollector |
__construct() | ||
collect(Request $request, Response $response, Exception $exception = null) Collects data for the given Request and Response. | ||
lateCollect() Collects data as late as possible. | ||
reset() Resets this data collector to its initial state. | ||
getMethod() | ||
getPathInfo() | ||
getRequestRequest() | ||
getRequestQuery() | ||
getRequestHeaders() | ||
getRequestServer($raw = false) | ||
getRequestCookies($raw = false) | ||
getRequestAttributes() | ||
getResponseHeaders() | ||
getResponseCookies() | ||
getSessionMetadata() | ||
getSessionAttributes() | ||
getFlashes() | ||
getContent() | ||
getContentType() | ||
getStatusText() | ||
getStatusCode() | ||
getFormat() | ||
getLocale() | ||
getDotenvVars() | ||
string | getRoute() Gets the route name. | |
getIdentifier() | ||
array | getRouteParams() Gets the route parameters. | |
array|string | getController() Gets the parsed controller. | |
array|bool | getRedirect() Gets the previous request attributes. | |
getForwardToken() | ||
onKernelController(FilterControllerEvent $event) | ||
onKernelResponse(FilterResponseEvent $event) | ||
static array | getSubscribedEvents() Returns an array of event names this subscriber wants to listen to. | |
string | getName() Returns the name of the collector. | |
array|string | parseController(mixed $controller) Parse a controller. |
$data |
Converts the variable into a serializable Data instance.
This array can be displayed in the template using the VarDumper component.
mixed | $var |
Data |
callable[] | The casters to add to the cloner |
Collects data for the given Request and Response.
Request | $request | |
Response | $response | |
Exception | $exception |
Collects data as late as possible.
Resets this data collector to its initial state.
$raw |
$raw |
Gets the route name.
The _route request attributes is automatically set by the Router Matcher.
string | The route |
Gets the route parameters.
The _route_params request attributes is automatically set by the RouterListener.
array | The parameters |
Gets the parsed controller.
array|string | The controller as a string or array of data with keys 'class', 'method', 'file' and 'line' |
Gets the previous request attributes.
array|bool | A legacy array of data from the previous redirection response or false otherwise |
FilterControllerEvent | $event |
FilterResponseEvent | $event |
Returns an array of event names this subscriber wants to listen to.
The array keys are event names and the value can be:
For instance:
array | The event names to listen to |
Returns the name of the collector.
string | The collector name |
Parse a controller.
mixed | $controller | The controller to parse |
array|string | An array of controller data or a simple string |
© 2004–2017 Fabien Potencier
Licensed under the MIT License.
https://api.symfony.com/4.1/Symfony/Component/HttpKernel/DataCollector/RequestDataCollector.html