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

put() public method

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