function StopwatchEvent::start

Starts a new event period.

Return value

StopwatchEvent The event

File

webprofiler/src/Stopwatch.php, line 350

Class

StopwatchEvent
Class StopwatchEvent

Namespace

Drupal\webprofiler

Code

public function start() {
    $this->started[] = $this->getNow();
    return $this;
}