예제 #1
0
파일: User.php 프로젝트: stopsopa/utils
 public function removeComment(Comment $comment)
 {
     $comment->setUser(null);
     $this->comments->removeElement($comment);
     return $this;
 }