Ergo\Http\Client::put PHP Метод

put() публичный Метод

Sends a PUT request
public put ( $path, $body, $contentType = null ) : Response
Результат Response
    function put($path, $body, $contentType = null)
    {
        return $this->_dispatchRequest($this->_buildRequest('PUT', $path, $body, $contentType));
    }