Пример #1
0
 public function addComment(Comment $comment)
 {
     $comment->setAlbum($this);
     $comments = $this->getComments();
     $comments[] = $comment;
     $this->setComments($comments);
     return $this;
 }