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

patch() public method

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