Symfony2 API
Class

Symfony\Component\HttpKernel\DataCollector\TimeDataCollector

class TimeDataCollector extends DataCollector

TimeDataCollector.

Methods

__construct(KernelInterface $kernel = null)

collect(Request $request, Response $response, Exception $exception = null)

Collects data for the given Request and Response.

setEvents(array $events)

Sets the request events.

array getEvents()

Gets the request events.

float getDuration()

Gets the request elapsed time.

float getInitTime()

Gets the initialization time.

integer getStartTime()

Gets the request time.

string getName()

Returns the name of the collector.

Details

at line 28
public __construct(KernelInterface $kernel = null)

Parameters

KernelInterface $kernel

at line 36
public collect(Request $request, Response $response, Exception $exception = null)

Collects data for the given Request and Response.

Parameters

Request $request A Request instance
Response $response A Response instance
Exception $exception An Exception instance

at line 55
public setEvents(array $events)

Sets the request events.

Parameters

array $events The request events

at line 69
public array getEvents()

Gets the request events.

Return Value

array The request events

at line 79
public float getDuration()

Gets the request elapsed time.

Return Value

float The elapsed time

at line 93
public float getInitTime()

Gets the initialization time.

This is the time spent until the beginning of the request handling.

Return Value

float The elapsed time

at line 103
public integer getStartTime()

Gets the request time.

Return Value

integer The time

at line 111
public string getName()

Returns the name of the collector.

Return Value

string The collector name