HttpRequestService::_PUT PHP Method

_PUT() public method

PUT wrapper for update data
public _PUT ( $url, $params = null, $username = null, $password = null, $contentType = null ) : RESTClient
$url String
$params mixed
$username String
$password String
$contentType String
return RESTClient
    public function _PUT($url, $params = null, $username = null, $password = null, $contentType = null)
    {
        $response = $this->call($url, 'PUT', $params, $username, $password, $contentType);
        return $this->parseResponse($this->convertEncoding($response, 'utf-8', $this->_encode));
    }