コード例 #1
0
ファイル: Post.php プロジェクト: NeroJz/ci_doctrine
 /**
  * Remove comment
  *
  * @param \Entities\Comment $comment
  */
 public function removeComment(\Entities\Comment $comment)
 {
     $this->comments->removeElement($comment);
 }
コード例 #2
0
 /**
  * Remove comment
  * @param \AnujRNair\AnujNairBundle\Entity\Comment $comment
  */
 public function removeComment(Comment $comment)
 {
     $this->comments->removeElement($comment);
 }
コード例 #3
-1
ファイル: Answer.php プロジェクト: bigfoot90/demo-answer
 /**
  * @param Comment $comment
  */
 public function removeComment(Comment $comment)
 {
     if ($this->comments->contains($comment)) {
         $this->comments->removeElement($comment);
     }
 }