summaryrefslogtreecommitdiffstats
path: root/vendor/react/promise/src/PromisorInterface.php
blob: bd6440086f0b31ff51cdf2da9bc0c51593e49fbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

namespace React\Promise;

interface PromisorInterface
{
    /**
     * Returns the promise of the deferred.
     *
     * @return PromiseInterface
     */
    public function promise();
}