return $this->origin;
}
/**
* Starts a new event period.
*
* @return $this
*/
public function start(): static
{
$this->started[] = $this->getNow();
return $this;
}
/**
* Stops the last started event period.
*
* @return $this
*
* @throws \LogicException When stop() is called without a matching call to start()
*/