SaeTOAuthV2::delete PHP Method

delete() public method

DELTE wrapper for oAuthReqeust.
public delete ( $url, $parameters = [] ) : mixed
return mixed
    function delete($url, $parameters = array())
    {
        $response = $this->oAuthRequest($url, 'DELETE', $parameters);
        if ($this->format === 'json' && $this->decode_json) {
            return json_decode($response, true);
        }
        return $response;
    }