Home
last modified time | relevance | path

Searched refs:FulfilledPromise (Results 1 – 10 of 10) sorted by relevance

/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Future/
H A DCompletedFutureValue.php4 use React\Promise\FulfilledPromise; alias
51 : new FulfilledPromise($this->result);
/plugin/authgooglesheets/vendor/guzzlehttp/promises/src/
H A DCreate.php29 return new FulfilledPromise($value);
H A DFulfilledPromise.php11 class FulfilledPromise implements PromiseInterface class
/plugin/elasticsearch/vendor/react/promise/src/
H A DFulfilledPromise.php6 * @deprecated 2.8.0 External usage of FulfilledPromise is deprecated, use `resolve()` instead.
8 class FulfilledPromise implements ExtendedPromiseInterface, CancellablePromiseInterface class
15 throw new \InvalidArgumentException('You cannot create React\Promise\FulfilledPromise with a promise. Use React\Promise\resolve($promiseOrValue) instead.');
H A Dfunctions.php39 return new FulfilledPromise($promiseOrValue);
/plugin/elasticsearch/vendor/react/promise/
H A DCHANGELOG.md53 * Mark `FulfilledPromise`, `RejectedPromise` and `LazyPromise` as deprecated for Promise v2 (and remove for Promise v3).
58 $fulfilled = new React\Promise\FulfilledPromise($value);
206 * BC break: `FulfilledPromise` and `RejectedPromise` now throw an exception
H A DREADME.md33 * [FulfilledPromise](#fulfilledpromise)
176 * [FulfilledPromise](#fulfilledpromise) (deprecated)
228 * [FulfilledPromise](#fulfilledpromise) (deprecated)
360 * [FulfilledPromise](#fulfilledpromise) (deprecated)
410 ### FulfilledPromise subsection
412 > Deprecated in v2.8.0: External usage of `FulfilledPromise` is deprecated, use `resolve()` instead.
417 $promise = React\Promise\FulfilledPromise($value);
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Handler/
H A DStreamHandler.php6 use GuzzleHttp\Promise\FulfilledPromise; alias
139 return new FulfilledPromise($response);
H A DCurlFactory.php6 use GuzzleHttp\Promise\FulfilledPromise; alias
117 return new FulfilledPromise($easy->response);
/plugin/authgooglesheets/vendor/guzzlehttp/promises/
H A DREADME.md14 - [FulfilledPromise](#fulfilledpromise)
352 ## FulfilledPromise section in API
358 use GuzzleHttp\Promise\FulfilledPromise;
360 $promise = new FulfilledPromise('value');