public function TimeDataCollector::getStartTime in Zircon Profile 8.0
Same name and namespace in other branches
- 8 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\DataCollectorCode
public function getStartTime() {
return $this->data['start_time'];
}