Home
last modified time | relevance | path

Searched refs:GuzzleHttp (Results 1 – 25 of 185) sorted by relevance

12345678

/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Handler/
H A DMockHandler.php2 namespace GuzzleHttp\Handler;
4 use GuzzleHttp\Exception\RequestException;
5 use GuzzleHttp\HandlerStack;
6 use GuzzleHttp\Promise\PromiseInterface;
7 use GuzzleHttp\Promise\RejectedPromise;
8 use GuzzleHttp\TransferStats;
94 ? \GuzzleHttp\Promise\rejection_for($response)
95 : \GuzzleHttp\Promise\promise_for($response);
123 return \GuzzleHttp\Promise\rejection_for($reason);
143 . 'exception. Found ' . \GuzzleHttp\describe_type($value));
H A DStreamHandler.php2 namespace GuzzleHttp\Handler;
4 use GuzzleHttp\Exception\ConnectException;
5 use GuzzleHttp\Exception\RequestException;
6 use GuzzleHttp\Promise\FulfilledPromise;
7 use GuzzleHttp\Promise\PromiseInterface;
8 use GuzzleHttp\Psr7;
9 use GuzzleHttp\TransferStats;
10 use GuzzleHttp\Utils;
71 return \GuzzleHttp\Promise\rejection_for($e);
106 $headers = \GuzzleHttp\headers_from_lines($hdrs);
[all …]
H A DEasyHandle.php2 namespace GuzzleHttp\Handler;
4 use GuzzleHttp\Psr7\Response;
53 $headers = \GuzzleHttp\headers_from_lines($this->headers);
54 $normalizedKeys = \GuzzleHttp\normalize_header_keys($headers);
H A DCurlFactory.php2 namespace GuzzleHttp\Handler;
4 use GuzzleHttp\Exception\ConnectException;
5 use GuzzleHttp\Exception\RequestException;
6 use GuzzleHttp\Promise\FulfilledPromise;
7 use GuzzleHttp\Psr7;
8 use GuzzleHttp\Psr7\LazyOpenStream;
9 use GuzzleHttp\TransferStats;
171 return \GuzzleHttp\Promise\rejection_for(
203 return \GuzzleHttp\Promise\rejection_for($error);
382 $sink = \GuzzleHttp\Psr7\stream_for($sink);
[all …]
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/
H A DCHANGELOG.rst11 ``GuzzleHttp\Streams\Utils`` instead.
12 * Moved ``GuzzleHttp\Stream\MetadataStreamInterface::getMetadata`` to
13 ``GuzzleHttp\Stream\StreamInterface``. MetadataStreamInterface is no longer
15 * Added ``attach()`` to ``GuzzleHttp\Stream\StreamInterface`` for PSR-7
19 ``GuzzleHttp\Stream\StreamInterface::getContents()``. This function now
22 ``GuzzleHttp\Stream\Utils::copyToString()`` function.
27 * ``GuzzleHttp\Stream\Stream::__construct``,
28 ``GuzzleHttp\Stream\Stream::factory``, and
29 ``GuzzleHttp\Stream\Utils::create`` no longer accept a size in the second
32 * Added ``GuzzleHttp\Strea
[all...]
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DUPGRADING.md14 `GuzzleHttp\HandlerStack`).
41 - `GuzzleHttp\Query` and `GuzzleHttp\QueryParser` have been removed. Query
79 `GuzzleHttp\Psr7\Uri`) for URI support. `GuzzleHttp\Url` is now gone.
174 - `GuzzleHttp\Url`
175 - `GuzzleHttp\Query`
184 - `GuzzleHttp\json_decode` -> `GuzzleHttp\Utils::jsonDecode`
185 - `GuzzleHttp\get_path` -> `GuzzleHttp\Utils::getPath`
186 - `GuzzleHttp\Utils::setPath` -> `GuzzleHttp\set_path`
187 - `GuzzleHttp\Pool::batch` -> `GuzzleHttp\batch`. This function is, however,
191 `GuzzleHttp\get()`, `GuzzleHttp\post()`, etc.). Use a `GuzzleHttp\Client`
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DREADME.md19 `GuzzleHttp\Psr7\AppendStream`
24 use GuzzleHttp\Psr7;
48 use GuzzleHttp\Psr7;
66 use GuzzleHttp\Psr7;
89 use GuzzleHttp\Psr7;
104 `GuzzleHttp\Psr7\FnStream`
113 use GuzzleHttp\Psr7;
149 use GuzzleHttp\Psr7;
168 use GuzzleHttp\Psr7;
198 use GuzzleHttp\Psr7;
[all …]
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/
H A DMockHandler.php2 namespace GuzzleHttp\Ring\Client;
4 use GuzzleHttp\Ring\Core;
5 use GuzzleHttp\Ring\Future\CompletedFutureArray;
6 use GuzzleHttp\Ring\Future\FutureArrayInterface;
H A DStreamHandler.php2 namespace GuzzleHttp\Ring\Client;
4 use GuzzleHttp\Ring\Core;
5 use GuzzleHttp\Ring\Exception\ConnectException;
6 use GuzzleHttp\Ring\Exception\RingException;
7 use GuzzleHttp\Ring\Future\CompletedFutureArray;
8 use GuzzleHttp\Stream\InflateStream;
9 use GuzzleHttp\Stream\StreamInterface;
10 use GuzzleHttp\Stream\Stream;
11 use GuzzleHttp\Stream\Utils;
/plugin/elasticsearch/vendor/ruflin/elastica/src/Transport/
H A DAwsAuthV4.php9 use GuzzleHttp; alias
10 use GuzzleHttp\Client;
11 use GuzzleHttp\HandlerStack;
12 use GuzzleHttp\Middleware;
13 use GuzzleHttp\Psr7;
21 $stack = HandlerStack::create(GuzzleHttp\choose_handler());
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
H A DRetryMiddleware.php2 namespace GuzzleHttp; namespace
4 use GuzzleHttp\Promise\PromiseInterface;
5 use GuzzleHttp\Promise\RejectedPromise;
6 use GuzzleHttp\Psr7;
113 return \GuzzleHttp\Promise\rejection_for($reason);
H A DPool.php2 namespace GuzzleHttp; namespace
4 use GuzzleHttp\Promise\EachPromise;
5 use GuzzleHttp\Promise\PromiseInterface;
6 use GuzzleHttp\Promise\PromisorInterface;
54 $iterable = \GuzzleHttp\Promise\iter_for($requests);
H A DMiddleware.php2 namespace GuzzleHttp; namespace
4 use GuzzleHttp\Cookie\CookieJarInterface;
5 use GuzzleHttp\Exception\RequestException;
6 use GuzzleHttp\Promise\RejectedPromise;
7 use GuzzleHttp\Psr7;
105 return \GuzzleHttp\Promise\rejection_for($reason);
201 return \GuzzleHttp\Promise\rejection_for($reason);
H A DClientInterface.php2 namespace GuzzleHttp; namespace
4 use GuzzleHttp\Exception\GuzzleException;
5 use GuzzleHttp\Promise\PromiseInterface;
H A Dfunctions.php2 namespace GuzzleHttp; namespace
4 use GuzzleHttp\Handler\CurlHandler;
5 use GuzzleHttp\Handler\CurlMultiHandler;
6 use GuzzleHttp\Handler\Proxy;
7 use GuzzleHttp\Handler\StreamHandler;
/plugin/authgooglesheets/vendor/google/auth/src/HttpHandler/
H A DGuzzle5HttpHandler.php20 use GuzzleHttp\ClientInterface;
21 use GuzzleHttp\Message\ResponseInterface as Guzzle5ResponseInterface;
22 use GuzzleHttp\Promise\Promise;
23 use GuzzleHttp\Promise\RejectedPromise;
24 use GuzzleHttp\Psr7\Response;
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/tests/
H A DPumpStreamTest.php2 namespace GuzzleHttp\Tests\Stream;
4 use GuzzleHttp\Stream\Exception\CannotAttachException;
5 use GuzzleHttp\Stream\LimitStream;
6 use GuzzleHttp\Stream\PumpStream;
7 use GuzzleHttp\Stream\Stream;
H A DInflateStreamTest.php2 namespace GuzzleHttp\Tests\Stream;
4 use GuzzleHttp\Stream\InflateStream;
5 use GuzzleHttp\Stream\Stream;
H A DLimitStreamTest.php2 namespace GuzzleHttp\Tests\Http;
4 use GuzzleHttp\Stream\Exception\SeekException;
5 use GuzzleHttp\Stream\FnStream;
6 use GuzzleHttp\Stream\Stream;
7 use GuzzleHttp\Stream\LimitStream;
8 use GuzzleHttp\Stream\NoSeekStream;
12 * @covers GuzzleHttp\Stream\LimitStream
H A DUtilsTest.php2 namespace GuzzleHttp\Tests\Stream;
4 use GuzzleHttp\Stream\Exception\SeekException;
5 use GuzzleHttp\Stream\FnStream;
6 use GuzzleHttp\Stream\NoSeekStream;
7 use GuzzleHttp\Stream\Stream;
8 use GuzzleHttp\Stream\Utils;
101 $s = $this->getMockBuilder('GuzzleHttp\Stream\Stream')
H A DDroppingStreamTest.php2 namespace GuzzleHttp\Tests\Stream;
4 use GuzzleHttp\Stream\BufferStream;
5 use GuzzleHttp\Stream\DroppingStream;
H A DNoSeekStreamTest.php2 namespace GuzzleHttp\Tests\Stream;
4 use GuzzleHttp\Stream\Stream;
5 use GuzzleHttp\Stream\NoSeekStream;
9 * @covers GuzzleHttp\Stream\NoSeekStream
10 * @covers GuzzleHttp\Stream\StreamDecoratorTrait
16 $s = $this->getMockBuilder('GuzzleHttp\Stream\StreamInterface')
/plugin/authfacebook/lib/HttpClients/
H A DFacebookGuzzleHttpClient.php29 use GuzzleHttp\Client;
30 use GuzzleHttp\Message\ResponseInterface;
31 use GuzzleHttp\Ring\Exception\RingException;
32 use GuzzleHttp\Exception\RequestException;
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/tests/Exception/
H A DSeekExceptionTest.php2 namespace GuzzleHttp\Tests\Stream\Exception;
4 use GuzzleHttp\Stream\Exception\SeekException;
5 use GuzzleHttp\Stream\Stream;
/plugin/authgooglesheets/vendor/google/apiclient/src/AccessToken/
H A DRevoke.php23 use GuzzleHttp\ClientInterface;
24 use GuzzleHttp\Psr7;
25 use GuzzleHttp\Psr7\Request;

12345678