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));
    }