HttpRequestService::_DELETE PHP Method

_DELETE() public method

DELETE wrapper for delete data
public _DELETE ( $url, $params = null, $username = null, $password = null ) : RESTClient
$url String
$params mixed
$username String
$password String
return RESTClient
    public function _DELETE($url, $params = null, $username = null, $password = null)
    {
        #Modified by Edison tsai on 09:50 2010/11/26 for missing part
        $response = $this->call($url, 'DELETE', $params, $username, $password);
        return $this->parseResponse($response);
    }