Current Path : /var/test/www/opcart/vendor/react/promise/src/ |
Current File : /var/test/www/opcart/vendor/react/promise/src/ExtendedPromiseInterface.php |
<?php namespace React\Promise; interface ExtendedPromiseInterface extends PromiseInterface { /** * @return void */ public function done(callable $onFulfilled = null, callable $onRejected = null, callable $onProgress = null); /** * @return ExtendedPromiseInterface */ public function otherwise(callable $onRejected); /** * @return ExtendedPromiseInterface */ public function always(callable $onFulfilledOrRejected); /** * @return ExtendedPromiseInterface */ public function progress(callable $onProgress); }