Home
last modified time | relevance | path

Searched refs:requestAsync (Results 1 – 7 of 7) sorted by relevance

/plugin/matrixnotifierwas/vendor/guzzlehttp/guzzle/src/
DClientTrait.php144 …abstract public function requestAsync(string $method, $uri, array $options = []): PromiseInterface; function
159 return $this->requestAsync('GET', $uri, $options);
175 return $this->requestAsync('HEAD', $uri, $options);
191 return $this->requestAsync('PUT', $uri, $options);
207 return $this->requestAsync('POST', $uri, $options);
223 return $this->requestAsync('PATCH', $uri, $options);
239 return $this->requestAsync('DELETE', $uri, $options);
DClient.php91 ? $this->requestAsync(\substr($method, 0, -5), $uri, $opts)
153 public function requestAsync(string $method, $uri = '', array $options = []): PromiseInterface function in GuzzleHttp\\Client
189 return $this->requestAsync($method, $uri, $options)->wait();
DClientInterface.php68 public function requestAsync(string $method, $uri, array $options = []): PromiseInterface; function
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
DClient.php94 ? $this->requestAsync(substr($method, 0, -5), $uri, $opts)
146 public function requestAsync($method, $uri = '', array $options = []) function in GuzzleHttp\\Client
182 return $this->requestAsync($method, $uri, $options)->wait();
DClientInterface.php73 public function requestAsync($method, $uri, array $options = []); function
/plugin/matrixnotifierwas/vendor/guzzlehttp/guzzle/
DCHANGELOG.md277 * Dont allow passing `null` as URI to `Client::request()` and `Client::requestAsync()` [#2461](http…
554 Instead, use one of the `*Async` methods of a client (e.g., `requestAsync`,
559 * Added `requestAsync` and `sendAsync` to send request asynchronously.
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
DCHANGELOG.md265 Instead, use one of the `*Async` methods of a client (e.g., `requestAsync`,
270 * Added `requestAsync` and `sendAsync` to send request asynchronously.