示例#1
0
文件: User.php 项目: stopsopa/utils
 public function removeComment(Comment $comment)
 {
     $comment->setUser(null);
     $this->comments->removeElement($comment);
     return $this;
 }