commentableId = $commentableId; $this->commentableType = $commentableType; $this->userId = $userId; $this->comment = $comment; } /** * @return int */ public function getCommentableId(): int { return $this->commentableId; } /** * @return string */ public function getCommentableType(): string { return 'App\Models\\'.$this->commentableType; } /** * @return int */ public function getUserId(): int { return $this->userId; } /** * @return string */ public function getComment(): string { return $this->comment; } }