Home
last modified time | relevance | path

Searched refs:client (Results 76 – 100 of 539) sorted by path

12345678910>>...22

/plugin/authgooglesheets/vendor/google/apiclient-services/src/TagManager/
H A DRevertClientResponse.php28 public function setClient(Client $client) argument
30 $this->client = $client;
37 return $this->client;
/plugin/authgooglesheets/vendor/google/apiclient/
H A DREADME.md137 $client = new Google\Client();
162 $client = new Google\Client();
209 $client = new Google\Client();
234 $client = new Google\Client();
235 $client->setAuthConfig($jsonKey);
329 // create the Google client
330 $client = new Google\Client();
341 $httpClient = $client->authorize();
360 $client->setCache($cache);
392 $client = new Google\Client();
[all …]
/plugin/authgooglesheets/vendor/google/apiclient/src/Http/
H A DBatch.php52 private $client; variable in Google\\Http\\Batch
59 Client $client, argument
64 $this->client = $client;
66 $this->rootUrl = rtrim($rootUrl ?: $this->client->getConfig('base_path'), '/');
139 $response = $this->client->execute($request);
H A DMediaFileUpload.php60 private $client; variable in Google\\Http\\MediaFileUpload
75 * @param Client $client
84 Client $client, argument
91 $this->client = $client;
170 $response = $this->client->execute($request);
314 $response = $this->client->execute($this->request, false);
333 $this->client->getLogger()->error($error);
H A DREST.php39 * @param Client $client
49 ClientInterface $client, argument
59 array($client, $request, $expectedClass)
72 * @param Client $client
79 …public static function doExecute(ClientInterface $client, RequestInterface $request, $expectedClas… argument
82 $httpHandler = HttpHandlerFactory::build($client);
/plugin/authgooglesheets/vendor/google/apiclient/src/
H A DService.php31 private $client; variable in Google\\Service
36 $this->client = $clientOrConfig;
38 $this->client = new Client($clientOrConfig ?: []);
54 return $this->client;
65 $this->client,
/plugin/authgooglesheets/vendor/google/apiclient/src/Service/
H A DREADME.md4 [google-api-php-client-services](https://github.com/google/google-api-php-client-services)
H A DResource.php52 private $client; variable in Google\\Service\\Resource
69 $this->client = $service->getClient();
89 $this->client->getLogger()->error(
144 $this->client->getLogger()->error(
162 $this->client->getLogger()->error(
184 $this->client->getLogger()->info(
216 $upload = new MediaFileUpload($this->client, $request, $mimeType, $data);
230 if ($this->client->shouldDefer()) {
238 return $this->client->execute($request, $expectedClass);
/plugin/authgooglesheets/vendor/google/auth/
H A DREADME.md96 // create the HTTP client
97 $client = new Client([
116 // create the HTTP client
117 $client = new Client([
152 // create the HTTP client
153 $client = new Client([
202 // create the HTTP client
203 $client = new Client([
244 // create the HTTP client
245 $client = new Client([
[all …]
/plugin/authgooglesheets/vendor/google/auth/src/
H A DApplicationDefaultCredentials.php165 if (!($client = HttpClientCache::getHttpClient())) {
166 $client = new Client();
167 HttpClientCache::setHttpClient($client);
170 $httpHandler = HttpHandlerFactory::build($client);
276 if (!($client = HttpClientCache::getHttpClient())) {
277 $client = new Client();
278 HttpClientCache::setHttpClient($client);
281 $httpHandler = HttpHandlerFactory::build($client);
H A DCredentialsLoader.php273 throw new UnexpectedValueException('Invalid client cert source JSON');
/plugin/authgooglesheets/vendor/google/auth/src/HttpHandler/
H A DGuzzle5HttpHandler.php36 private $client; variable in Google\\Auth\\HttpHandler\\Guzzle5HttpHandler
39 * @param ClientInterface $client
41 public function __construct(ClientInterface $client) argument
43 $this->client = $client;
55 $response = $this->client->send(
75 $futureResponse = $this->client->send(
109 return $this->client->createRequest(
H A DGuzzle6HttpHandler.php28 private $client; variable in Google\\Auth\\HttpHandler\\Guzzle6HttpHandler
31 * @param ClientInterface $client
33 public function __construct(ClientInterface $client) argument
35 $this->client = $client;
47 return $this->client->send($request, $options);
60 return $this->client->sendAsync($request, $options);
H A DHttpClientCache.php37 * @param ClientInterface|null $client
40 public static function setHttpClient(ClientInterface $client = null) argument
42 self::$httpClient = $client;
H A DHttpHandlerFactory.php27 * @param ClientInterface $client
31 public static function build(ClientInterface $client = null) argument
33 $client = $client ?: new Client();
45 return new Guzzle5HttpHandler($client);
47 return new Guzzle6HttpHandler($client);
49 return new Guzzle7HttpHandler($client);
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DCHANGELOG.md219 * No longer adding default middlewares in the client ctor. These need to be
265 Instead, use one of the `*Async` methods of a client (e.g., `requestAsync`,
284 into a client constructor or request method.
303 * Nested futures are now resolved in the client rather than the RequestFsm
564 * Added the ability to provide an emitter to a client in the client constructor.
708 * Bug fix: Setting default options on a client now works
913 …ded the ability to overwrite configuration settings in a client when grabbing a throwaway client f…
945 * BC: Setting a service description on a client will no longer modify the client's command factorie…
1088 * Added/moved client options:
1325 * Added the ability to passed parameters to all requests created by a client
[all …]
H A DREADME.md1 Guzzle, PHP HTTP client
8 Guzzle is a PHP HTTP client that makes it easy to send HTTP requests and
20 - Middleware system allows you to augment and compose client behavior.
23 $client = new \GuzzleHttp\Client();
24 $response = $client->request('GET', 'https://api.github.com/repos/guzzle/guzzle');
32 $promise = $client->sendAsync($request)->then(function ($response) {
H A DUPGRADING.md125 client.
338 $request = $client->get('/');
368 - The client no longer emits a `client.create_request` event.
918 $client = new self(
927 return $client;
944 $client = new self(
953 return $client;
963 <client>
992 </client>
1141 $client;
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
H A DPool.php26 * @param ClientInterface $client Client used to send the requests.
36 ClientInterface $client, argument
55 $requests = function () use ($iterable, $client, $opts) {
58 yield $key => $client->sendAsync($rfn, $opts);
91 * @param ClientInterface $client Client used to send the requests
101 ClientInterface $client, argument
108 $pool = new static($client, $requests, $options);
/plugin/authgooglesheets/vendor/monolog/monolog/
H A DCHANGELOG.md497 * Fixed RavenHandler's handling of context/extra data, requires Raven client >0.1.0
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DDoctrineCouchDBHandler.php27 private $client; variable in Monolog\\Handler\\DoctrineCouchDBHandler
29 public function __construct(CouchDBClient $client, $level = Logger::DEBUG, bool $bubble = true) argument
31 $this->client = $client;
40 $this->client->postDocument($record['formatted']);
H A DDynamoDbHandler.php34 protected $client; variable in Monolog\\Handler\\DynamoDbHandler
51 …public function __construct(DynamoDbClient $client, string $table, $level = Logger::DEBUG, bool $b… argument
61 $this->client = $client;
77 $formatted = $this->client->formatAttributes($filtered);
80 $this->client->putItem([
H A DElasticaHandler.php42 protected $client; variable in Monolog\\Handler\\ElasticaHandler
50 * @param Client $client Elastica Client object
53 …public function __construct(Client $client, array $options = [], $level = Logger::DEBUG, bool $bub… argument
56 $this->client = $client;
122 $this->client->addDocuments($documents);
H A DElasticsearchHandler.php49 protected $client; variable in Monolog\\Handler\\ElasticsearchHandler
57 * @param Client $client Elasticsearch Client object
60 …public function __construct(Client $client, array $options = [], $level = Logger::DEBUG, bool $bub… argument
63 $this->client = $client;
146 $responses = $this->client->bulk($params);
H A DSqsHandler.php31 private $client; variable in Monolog\\Handler\\SqsHandler
39 $this->client = $sqsClient;
57 $this->client->sendMessage([

12345678910>>...22