You are here

public function TimeDataCollector::getStartTime in Zircon Profile 8

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

Gets the request time.

Return value

int The time

2 calls to TimeDataCollector::getStartTime()
TimeDataCollector::getDuration in vendor/symfony/http-kernel/DataCollector/TimeDataCollector.php
Gets the request elapsed time.
TimeDataCollector::getInitTime in vendor/symfony/http-kernel/DataCollector/TimeDataCollector.php
Gets the initialization time.

File

vendor/symfony/http-kernel/DataCollector/TimeDataCollector.php, line 124

Class

TimeDataCollector
TimeDataCollector.

Namespace

Symfony\Component\HttpKernel\DataCollector

Code

public function getStartTime() {
  return $this->data['start_time'];
}