linslin\yii2\curl\Curl::patch PHP 메소드

patch() 공개 메소드

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
리턴 mixed response
    public function patch($url, $raw = true)
    {
        return $this->_httpRequest('PATCH', $url, $raw);
    }