Timestamp = date('Y-m-dTH:i:s.v') . (date('p') == 'Z' ? 'Z' : 'L'); } /** * Sets an exception to the event * * @param Throwable $e * @return void */ public function setException(Throwable $e): void { $this->Exception = Utilities::exceptionToArray($e); } /** * @return string */ public function getTimestamp(): string { return $this->Timestamp; } }