예제 #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
 /**
  * @param Comment $comment
  */
 public function removeComment(Comment $comment)
 {
     if ($this->comments->contains($comment)) {
         $this->comments->removeElement($comment);
     }
 }