Newscoop\Services\CommentService::remove PHP Method

remove() public method

Mark comment as removed
public remove ( Comment $comment ) : Comment
$comment Newscoop\Entity\Comment
return Newscoop\Entity\Comment
    public function remove($comment)
    {
        $comment->setStatus('deleted');
        $this->em->flush();
        $cacheService = \Zend_Registry::get('container')->getService('newscoop.cache');
        $cacheService->clearNamespace('comment');
        return $comment;
    }