Owl\Repositories\Fluent\CommentRepository::deleteComment PHP Method

deleteComment() public method

Delete a comment.
public deleteComment ( $id ) : boolean
$id int
return boolean
    public function deleteComment($id)
    {
        $object = array();
        $wkey["id"] = $id;
        $ret = $this->delete($wkey);
        return $ret;
    }