/** * Add comments * * @param \LCV\CommentBundle\Entity\Comment $comments * @return Article */ public function addComment(\LCV\CommentBundle\Entity\Comment $comments) { $this->comments[] = $comments; $comments->setArticle($this); return $this; }
public function addComment(\LCV\CommentBundle\Entity\Comment $comment) { $this->comments[] = $comment; $comment->setAuthor($this); return $this; }