Ejemplo n.º 1
0
 /**
  * @param Comment $comment
  */
 public function addComment(Comment $comment)
 {
     if (!$this->comments->contains($comment)) {
         $this->comments->add($comment);
         $comment->setAnswer($this);
     }
 }
Ejemplo n.º 2
0
 public function addComment(Comment $comment)
 {
     $this->comments->add($comment);
     $comment->setPost($this);
 }
Ejemplo n.º 3
0
 /**
  * @param Comment $comment
  */
 public function addComment(Comment $comment)
 {
     $this->comments->add($comment);
 }