Owl\Repositories\Eloquent\CommentRepository::deleteComment PHP 메소드

deleteComment() 공개 메소드

Delete a comment.
public deleteComment ( $id ) : boolean
$id int
리턴 boolean
    public function deleteComment($id)
    {
        $comment = $this->getCommentById($id);
        $comment->delete();
        return $comment;
    }