public function StopwatchEvent::getStartTime

Gets the relative time of the start of the first period.

Return value

integer The time (in milliseconds)

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Debug/StopwatchEvent.php, line 125

Class

StopwatchEvent
Represents an Event managed by Stopwatch.

Namespace

Symfony\Component\HttpKernel\Debug

Code

public function getStartTime() {
  return isset($this->periods[0]) ? $this->periods[0][0] : 0;
}