Codebase list php-react-promise / 683c343
Mark LazyPromise as deprecated for Promise v2 Christian Lück 4 years ago
2 changed file(s) with 5 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
430430
431431 ### LazyPromise
432432
433 > Deprecated in v2.8.0: LazyPromise is deprecated and should not be used anymore.
434
433435 Creates a promise which will be lazily initialized by `$factory` once a consumer
434436 calls the `then()` method.
435437
11
22 namespace React\Promise;
33
4 /**
5 * @deprecated 2.8.0 LazyPromise is deprecated and should not be used anymore.
6 */
47 class LazyPromise implements ExtendedPromiseInterface, CancellablePromiseInterface
58 {
69 private $factory;