Mise à jour des librairies vendor

This commit is contained in:
Caribana
2018-05-01 14:43:32 +02:00
parent b67375ae8e
commit d776be73fc
5211 changed files with 59115 additions and 25863 deletions

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
@@ -23,6 +23,7 @@ class Google_Service_Spanner_ReadRequest extends Google_Collection
protected $keySetType = 'Google_Service_Spanner_KeySet';
protected $keySetDataType = '';
public $limit;
public $partitionToken;
public $resumeToken;
public $table;
protected $transactionType = 'Google_Service_Spanner_TransactionSelector';
@@ -44,10 +45,16 @@ class Google_Service_Spanner_ReadRequest extends Google_Collection
{
return $this->index;
}
/**
* @param Google_Service_Spanner_KeySet
*/
public function setKeySet(Google_Service_Spanner_KeySet $keySet)
{
$this->keySet = $keySet;
}
/**
* @return Google_Service_Spanner_KeySet
*/
public function getKeySet()
{
return $this->keySet;
@@ -60,6 +67,14 @@ class Google_Service_Spanner_ReadRequest extends Google_Collection
{
return $this->limit;
}
public function setPartitionToken($partitionToken)
{
$this->partitionToken = $partitionToken;
}
public function getPartitionToken()
{
return $this->partitionToken;
}
public function setResumeToken($resumeToken)
{
$this->resumeToken = $resumeToken;
@@ -76,10 +91,16 @@ class Google_Service_Spanner_ReadRequest extends Google_Collection
{
return $this->table;
}
/**
* @param Google_Service_Spanner_TransactionSelector
*/
public function setTransaction(Google_Service_Spanner_TransactionSelector $transaction)
{
$this->transaction = $transaction;
}
/**
* @return Google_Service_Spanner_TransactionSelector
*/
public function getTransaction()
{
return $this->transaction;