message; } /** * Returns the severity of the message. */ public function getSeverity(): string { return $this->severity; } public function jsonSerialize(): array { return [ 'message' => $this->message, 'severity' => $this->severity, ]; } }