comments = new ArrayCollection(); } public function getId() { return $this->id; } public function setTitle($title) { $this->title = $title; } public function getTitle() { return $this->title; } public function setDeletedAt($deletedAt) { $this->deletedAt = $deletedAt; } public function getDeletedAt() { return $this->deletedAt; } public function addComment(OtherComment $comment) { $this->comments[] = $comment; } }