id; } public function setCategory($category) { $this->category = $category; } public function addComment(Comment $comment) { $comment->setArticle($this); $this->comments[] = $comment; } public function getComments() { return $this->comments; } public function setTitle($title) { $this->title = $title; } public function getTitle() { return $this->title; } }