You are here

public function DataCollectorInterface::collect in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-kernel/DataCollector/DataCollectorInterface.php \Symfony\Component\HttpKernel\DataCollector\DataCollectorInterface::collect()

Collects data for the given Request and Response.

Parameters

Request $request A Request instance:

Response $response A Response instance:

\Exception $exception An Exception instance:

11 methods override DataCollectorInterface::collect()
ConfigDataCollector::collect in vendor/symfony/http-kernel/DataCollector/ConfigDataCollector.php
Collects data for the given Request and Response.
DumpDataCollector::collect in vendor/symfony/http-kernel/DataCollector/DumpDataCollector.php
Collects data for the given Request and Response.
EventDataCollector::collect in vendor/symfony/http-kernel/DataCollector/EventDataCollector.php
Collects data for the given Request and Response.
ExceptionDataCollector::collect in vendor/symfony/http-kernel/DataCollector/ExceptionDataCollector.php
Collects data for the given Request and Response.
LoggerDataCollector::collect in vendor/symfony/http-kernel/DataCollector/LoggerDataCollector.php
Collects data for the given Request and Response.

... See full list

File

vendor/symfony/http-kernel/DataCollector/DataCollectorInterface.php, line 31

Class

DataCollectorInterface
DataCollectorInterface.

Namespace

Symfony\Component\HttpKernel\DataCollector

Code

public function collect(Request $request, Response $response, \Exception $exception = null);