public function Kernel::getStartTime

Gets the request start time (not available if debug is disabled).

@api

Return value

integer The request start timestamp

Overrides KernelInterface::getStartTime

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Kernel.php, line 445

Class

Kernel
The Kernel is the heart of the Symfony system.

Namespace

Symfony\Component\HttpKernel

Code

public function getStartTime() {
  return $this->debug ? $this->startTime : -INF;
}