Пример #1
0
 /**
  * Removes a Comment
  *
  * @param \TYPO3\T3extblog\Domain\Model\Comment $commentToRemove The Comment to be removed
  * @return void
  */
 public function removeComment(Comment $commentToRemove)
 {
     $this->initComments();
     $commentToRemove->setDeleted(TRUE);
     $this->comments->detach($commentToRemove);
     $this->getCommentRepository()->update($commentToRemove);
 }