Newscoop\Entity\Repository\CommentRepository::setCommentRecommended PHP Method

setCommentRecommended() public method

Method for setting recommended for a comment
public setCommentRecommended ( Comment $comment, string $recommended ) : void
$comment Newscoop\Entity\Comment
$recommended string
return void
    public function setCommentRecommended(Comment $comment, $recommended)
    {
        $em = $this->getEntityManager();
        $comment->setRecommended($recommended);
        $em->persist($comment);
    }