Google\Spreadsheet\CellFeed::updateBatch PHP Method

updateBatch() public method

public updateBatch ( BatchRequest $batchRequest ) : BatchResponse
$batchRequest Google\Spreadsheet\Batch\BatchRequest
return Google\Spreadsheet\Batch\BatchResponse
    public function updateBatch(BatchRequest $batchRequest)
    {
        $xml = $batchRequest->createRequestXml($this);
        $response = ServiceRequestFactory::getInstance()->post($this->getBatchUrl(), $xml);
        return new BatchResponse(new \SimpleXMLElement($response));
    }