linslin\yii2\curl\Curl::delete PHP Method

delete() public method

Start performing DELETE-HTTP-Request
public delete ( string $url, boolean $raw = true ) : mixed
$url string
$raw boolean if response body contains JSON and should be decoded
return mixed response
    public function delete($url, $raw = true)
    {
        return $this->_httpRequest('DELETE', $url, $raw);
    }