Home
last modified time | relevance | path

Searched refs:method (Results 76 – 100 of 972) sorted by path

12345678910>>...39

/plugin/authgooglesheets/vendor/google/apiclient-services/src/ShoppingContent/
H A DProductstatusesCustomBatchRequestEntry.php42 public $method; variable in Google\\Service\\ShoppingContent\\ProductstatusesCustomBatchRequestEntry
107 public function setMethod($method) argument
109 $this->method = $method;
116 return $this->method;
H A DRegionalinventoryCustomBatchRequestEntry.php33 public $method; variable in Google\\Service\\ShoppingContent\\RegionalinventoryCustomBatchRequestEntry
72 public function setMethod($method) argument
74 $this->method = $method;
81 return $this->method;
H A DReturnaddressCustomBatchRequestEntry.php33 public $method; variable in Google\\Service\\ShoppingContent\\ReturnaddressCustomBatchRequestEntry
72 public function setMethod($method) argument
74 $this->method = $method;
81 return $this->method;
H A DReturnpolicyCustomBatchRequestEntry.php33 public $method; variable in Google\\Service\\ShoppingContent\\ReturnpolicyCustomBatchRequestEntry
72 public function setMethod($method) argument
74 $this->method = $method;
81 return $this->method;
H A DShippingsettingsCustomBatchRequestEntry.php37 public $method; variable in Google\\Service\\ShoppingContent\\ShippingsettingsCustomBatchRequestEntry
86 public function setMethod($method) argument
88 $this->method = $method;
95 return $this->method;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/SiteVerification/
H A DSiteVerificationWebResourceGettokenResponse.php25 public $method; variable in Google\\Service\\SiteVerification\\SiteVerificationWebResourceGettokenResponse
34 public function setMethod($method) argument
36 $this->method = $method;
43 return $this->method;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Storage/
H A DBucketCors.php30 public $method; variable in Google\\Service\\Storage\\BucketCors
57 public function setMethod($method) argument
59 $this->method = $method;
66 return $this->method;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Vault/
H A DQuery.php47 public $method; variable in Google\\Service\\Vault\\Query
188 public function setMethod($method) argument
190 $this->method = $method;
197 return $this->method;
/plugin/authgooglesheets/vendor/google/apiclient/
H A DREADME.md36 The preferred method is via [composer](https://getcomposer.org/). Follow the
219 …ersonate a user account, specify the email address of the user account using the method setSubject:
318 The method used is a matter of preference, but *it will be very difficult to use this library witho…
326 The `authorize` method returns an authorized [Guzzle Client](http://docs.guzzlephp.org/), so any re…
333 * Set your method for authentication. Depending on the API, This could be
371 …ccess token is granted. To do this, pass a callable to the `setTokenCallback` method on the client:
447 …by adding an 'alt' argument to optional params that is normally the last argument to a method call:
/plugin/authgooglesheets/vendor/google/apiclient/src/
H A DModel.php245 * @param string $method Method expecting an array as an argument.
247 public function assertIsArray($obj, $method) argument
251 "Incorrect parameter type passed to $method(). Expected an array."
/plugin/authgooglesheets/vendor/google/apiclient/src/Service/
H A DResource.php103 $method = $this->methods[$name];
133 if (!isset($method['parameters'])) {
134 $method['parameters'] = array();
137 $method['parameters'] = array_merge(
139 $method['parameters']
143 if ($key != 'postBody' && ! isset($method['parameters'][$key])) {
157 foreach ($method['parameters'] as $paramName => $paramSpec) {
196 $method['path'],
204 $method['httpMethod'],
/plugin/authgooglesheets/vendor/google/auth/
H A DREADME.md130 this, use the static method `getIdTokenMiddleware` on
224 For this, use the static method `getProxyIdTokenMiddleware` on
/plugin/authgooglesheets/vendor/google/auth/src/
H A DAccessToken.php449 * @param string $method
453 protected function callJwtStatic($method, array $args = []) argument
455 return call_user_func_array([JWT::class, $method], $args); // @phpstan-ignore-line
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DCHANGELOG.md284 into a client constructor or request method.
346 * Added a `GuzzleHttp\Pool::send()` convenience method to match the docs.
433 value as an array, then use the newly added `getHeaderAsArray()` method of
567 * Removed request method constants from RequestInterface.
585 that the toArray() method always returns an array.
656 * UriTemplate now has a `setRegex()` method to match the docs
1017 * Cleaning up `Guzzle\Common\Collection::inject` method
1085 * Added previousResponse() method to response objects
1249 * Bug: Fixing magic method command calls on clients
1278 …lMulti. Requests are now always prepares in the send() method rather than the addRequest() method.
[all …]
H A DUPGRADING.md216 value as an array, then use the newly added `getHeaderAsArray()` method of
279 rather than the `getDispatcher` method.
286 the `getListeners()` method.
301 Use the `on()` method to add a listener rather than the `addListener()` method.
370 template. You must pass an array into a creational method (e.g.,
400 the method is POST and no body is provided.
465 The `configureRedirects()` method has been removed in favor of a
653 - `readLine` has moved from an instance method to a static class method of
966 <command name="list_groups" method="GET" uri="groups.json">
973 <command name="create_group" method="POST" uri="groups.json">
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
H A DClient.php79 * @param string $method
84 public function __call($method, $args) argument
93 return substr($method, -5) === 'Async'
94 ? $this->requestAsync(substr($method, 0, -5), $uri, $opts)
95 : $this->request($method, $uri, $opts);
140 * @param string $method HTTP method
146 public function requestAsync($method, $uri = '', array $options = []) argument
158 $request = new Psr7\Request($method, $uri, $headers, $body, $version);
172 * @param string $method HTTP method.
179 public function request($method, $uri = '', array $options = []) argument
[all …]
H A DClientInterface.php50 * @param string $method HTTP method.
57 public function request($method, $uri, array $options = []); argument
67 * @param string $method HTTP method
73 public function requestAsync($method, $uri, array $options = []); argument
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Handler/
H A DCurlFactory.php243 $method = $easy->request->getMethod();
244 if ($method === 'PUT' || $method === 'POST') {
249 } elseif ($method === 'HEAD') {
H A DStreamHandler.php288 $method = "add_{$key}";
289 if (isset($methods[$method])) {
290 $this->{$method}($request, $context, $value, $params);
/plugin/authgooglesheets/vendor/guzzlehttp/promises/
H A DREADME.md25 - Promises have a synchronous `wait` method.
35 primary way of interacting with a promise is through its `then` method, which
42 Callbacks are registered with the `then` method by providing an optional
64 registered with the promises's `then` method. These callbacks are triggered
70 Promises are fulfilled using the `resolve($value)` method. Resolving a promise
201 method. When creating a promise, you can provide a wait function that is used
240 can be obtained by calling the `getReason` method of the exception.
281 method of a promise. When creating a promise you can provide an optional
295 `cancel()` method of a promise is called.
390 for example. When a foreign promise is returned inside of a then method
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DREADME.md237 `read()` method.
294 Use the `GuzzleHttp\Psr7\StreamWrapper::getResource()` method to create a PHP
444 This method reads the entire stream to calculate a rolling hash, based on
454 This method is useful for reducing the number of clones needed to mutate
457 - method: (string) Changes the HTTP method.
484 This method accepts the following `$resource` types:
495 - `object` with `__toString()`: If the object has the `__toString()` method,
648 or the standard port. This method can be used independently of the implementation.
655 [RFC 3986 Section 5.3](https://tools.ietf.org/html/rfc3986#section-5.3). Usually this method does n…
710 Returns the target URI as a relative reference from the base URI. This method is the counterpart to…
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DRequest.php18 private $method; variable in GuzzleHttp\\Psr7\\Request
27 * @param string $method HTTP method
34 $method, argument
40 $this->assertMethod($method);
45 $this->method = strtoupper($method);
91 return $this->method;
94 public function withMethod($method) argument
96 $this->assertMethod($method);
98 $new->method = strtoupper($method);
146 private function assertMethod($method) argument
[all …]
H A DServerRequest.php58 * @param string $method HTTP method
66 $method, argument
75 parent::__construct($method, $uri, $headers, $body, $version);
172 $method = isset($_SERVER['REQUEST_METHOD']) ? $_SERVER['REQUEST_METHOD'] : 'GET';
178 $serverRequest = new ServerRequest($method, $uri, $headers, $body, $protocol, $_SERVER);
H A DStreamDecoratorTrait.php63 * @param string $method Missing method name
68 public function __call($method, array $args) argument
70 $result = call_user_func_array([$this->stream, $method], $args);
/plugin/authgooglesheets/vendor/monolog/monolog/
H A DCHANGELOG.md209 …* BC Notice: If you are extending any of the Monolog's Formatters' `normalize` method, make sure y…

12345678910>>...39