?iť?

Your IP : 3.15.223.39


Current Path : /home/scgforma/www/cloud/3rdparty/react/promise/src/
Upload File :
Current File : /home/scgforma/www/cloud/3rdparty/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);
}