aboutsummaryrefslogtreecommitdiffstats
path: root/public/system/storage/vendor/react/promise/src/PromiseInterface.php
blob: fcd763d3f874c615ddcd4510832b90876e6fe60e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

namespace React\Promise;

interface PromiseInterface
{
    /**
     *
     * The `$onProgress` argument is deprecated and should not be used anymore.
     *
     * @return PromiseInterface
     */
    public function then(callable $onFulfilled = null, callable $onRejected = null, callable $onProgress = null);
}