createdAt = new DateTime(); } /** * @return mixed */ public function getId() { return $this->id; } /** * @param mixed $id * * @return LogEntry */ public function setId($id) { $this->id = $id; return $this; } /** * @return mixed */ public function getMessage() { return $this->message; } /** * @param mixed $message * * @return LogEntry */ public function setMessage($message) { $this->message = $message; return $this; } /** * @return mixed */ public function getContext() { return $this->context; } /** * @param mixed $context * * @return LogEntry */ public function setContext($context) { $this->context = $context; return $this; } /** * @return mixed */ public function getLevel() { return $this->level; } /** * @param mixed $level * * @return LogEntry */ public function setLevel($level) { $this->level = $level; return $this; } /** * @return mixed */ public function getLevelName() { return $this->levelName; } /** * @param mixed $levelName * * @return LogEntry */ public function setLevelName($levelName) { $this->levelName = $levelName; return $this; } /** * @return mixed */ public function getChannel() { return $this->channel; } /** * @param mixed $channel * * @return LogEntry */ public function setChannel($channel) { $this->channel = $channel; return $this; } /** * @return mixed */ public function getCreatedAt() { return $this->createdAt; } /** * @param mixed $createdAt * * @return LogEntry */ public function setCreatedAt($createdAt) { $this->createdAt = $createdAt; return $this; } }