Home
last modified time | relevance | path

Searched refs:methods (Results 251 – 275 of 582) sorted by path

1...<<11121314151617181920>>...24

/plugin/authgooglesheets/vendor/google/apiclient-services/src/
H A DTrafficDirectorService.php65 'methods' => [
H A DTranscoder.php66 'methods' => [
140 'methods' => [
H A DTranslate.php70 'methods' => [
118 'methods' => [
228 'methods' => [
290 'methods' => [
H A DVMMigrationService.php73 'methods' => [
115 'methods' => [
231 'methods' => [
293 'methods' => [
403 'methods' => [
491 'methods' => [
631 'methods' => [
705 'methods' => [
779 'methods' => [
865 'methods' => [
H A DVault.php78 'methods' => [
207 'methods' => [
275 'methods' => [
396 'methods' => [
456 'methods' => [
524 'methods' => [
H A DVerifiedaccess.php65 'methods' => [
H A DVersionHistory.php65 'methods' => [
93 'methods' => [
121 'methods' => [
157 'methods' => [
H A DVision.php82 'methods' => [
100 'methods' => [
118 'methods' => [
138 'methods' => [
200 'methods' => [
230 'methods' => [
260 'methods' => [
290 'methods' => [
320 'methods' => [
340 'methods' => [
[all …]
H A DWebRisk.php69 'methods' => [
93 'methods' => [
155 'methods' => [
175 'methods' => [
195 'methods' => [
231 'methods' => [
H A DWebfonts.php63 'methods' => [
H A DWebmasters.php69 'methods' => [
89 'methods' => [
158 'methods' => [
H A DWorkflowExecutions.php65 'methods' => [
85 'methods' => [
H A DWorkflows.php67 'methods' => [
109 'methods' => [
161 'methods' => [
H A DYouTube.php112 'methods' => [
133 'methods' => [
186 'methods' => [
315 'methods' => [
342 'methods' => [
432 'methods' => [
509 'methods' => [
582 'methods' => [
687 'methods' => [
712 'methods' => [
[all …]
H A DYouTubeAnalytics.php78 'methods' => [
123 'methods' => [
185 'methods' => [
H A DYouTubeReporting.php71 'methods' => [
139 'methods' => [
202 'methods' => [
222 'methods' => [
/plugin/authgooglesheets/vendor/google/apiclient/src/Service/
H A DResource.php64 private $methods; variable in Google\\Service\\Resource
73 $this->methods = is_array($resource) && isset($resource['methods']) ?
88 if (! isset($this->methods[$name])) {
103 $method = $this->methods[$name];
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DCHANGELOG.md285 * Client methods `get()`, `post()`, `put()`, `patch()`, `options()`, etc. are
286 now magic methods that will send synchronous requests.
482 * No longer utilizing the now deprecated namespaced methods from the stream
514 * Added helper methods to make it easier to represent messages as strings,
569 * Updated MessageFactory to work with custom request option methods.
621 * Test server is now a collection of static methods on a class
1058 * Magic methods are enabled by default on clients
1059 * Magic methods return the result of a command
1184 * Changed the aggregation functions of QueryString to be static methods
1209 * BC: Removed magic setX methods from commands
[all …]
H A DUPGRADING.md86 - The `json` and `xml` methods of response objects has been removed. With the
88 adding methods to message interfaces would actually require Guzzle messages
332 Calling methods like `get()`, `post()`, `head()`, etc. no longer create and
395 - POST field and file methods have been removed from the request object. You
432 methods have moved to the CacheSubscriber.
440 - `GuzzleHttp\Message\Response::isSuccessful()` and other related methods have
501 methods and a way in which to modify the transaction at that specific point in
635 of methods implemented by the `StreamInterface` has been drastically reduced to
638 ## Removed methods from StreamInterface
648 ## Renamed methods
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Handler/
H A DStreamHandler.php261 static $methods;
262 if (!$methods) {
263 $methods = array_flip(get_class_methods(__CLASS__));
289 if (isset($methods[$method])) {
/plugin/authgooglesheets/vendor/guzzlehttp/promises/
H A DCHANGELOG.md32 - Replaced functions by static methods
H A DREADME.md313 A promise has the following methods:
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DCHANGELOG.md59 - Replaced functions by static methods
146 calls to `trigger_error` when deprecated methods are invoked.
166 - Added common URI utility methods based on RFC 3986 (see documentation in the readme):
217 key/value both in encoded as well as decoded form to those methods. This is
235 - A bug in validating request methods by making it more permissive.
H A DREADME.md230 `GuzzleHttp\Psr7\StreamDecoratorTrait`. This trait provides methods that
233 methods.
308 There are various static methods available under the `GuzzleHttp\Psr7` namespace.
589 this library also provides additional functionality when working with URIs as static methods.
602 The following methods can be used to identify the type of the URI.
641 Additional methods to work with URI components.
689 `GuzzleHttp\Psr7\UriResolver` provides methods to resolve a URI reference in the context of a base …
729 `GuzzleHttp\Psr7\UriNormalizer` provides methods to normalize and compare URIs according to
737 This methods adds additional normalizations that can be configured with the `$flags` parameter whic…
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DFnStream.php18 private $methods; variable in GuzzleHttp\\Psr7\\FnStream
26 * @param array $methods Hash of method name to a callable.
28 public function __construct(array $methods) argument
30 $this->methods = $methods;
33 foreach ($methods as $name => $fn) {
74 * @param array $methods Hash of method name to a closure
78 public static function decorate(StreamInterface $stream, array $methods) argument
82 foreach (array_diff(self::$slots, array_keys($methods)) as $diff) {
83 $methods[$diff] = [$stream, $diff];
86 return new self($methods);

1...<<11121314151617181920>>...24