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;
    }