Google\Cloud\Upload\ResumableUploader::getStatusResponse PHP Method

getStatusResponse() private method

Gets the status of the upload.
private getStatusResponse ( ) : Psr\Http\Message\ResponseInterface
return Psr\Http\Message\ResponseInterface
    private function getStatusResponse()
    {
        $request = new Request('PUT', $this->resumeUri, ['Content-Range' => 'bytes */*']);
        return $this->requestWrapper->send($request, $this->requestOptions);
    }