level = $level; $this->app = $app; $this->message = $message; } /** * Get the level of the log item * * @return int * @since 28.0.0 */ public function getLevel(): int { return $this->level; } /** * Get the app context of the log item * * @return string * @since 28.0.0 */ public function getApp(): string { return $this->app; } /** * Get the message of the log item * * @return array * @since 28.0.0 */ public function getMessage(): array { return $this->message; } }