commenterID = $commenterID; $this->content = $content; $this->type = $type; } /** * @return int */ public function getCommenterId(): string { return $this->commenterID; } /** * @return string */ public function getContent(): ?string { return $this->content; } /** * @return int|null */ public function getType(): ?int { return $this->type; } }