Ergo\Http\Client::put PHP Method

put() public method

Sends a PUT request
public put ( $path, $body, $contentType = null ) : Response
return Response
    function put($path, $body, $contentType = null)
    {
        return $this->_dispatchRequest($this->_buildRequest('PUT', $path, $body, $contentType));
    }