Subversion Repositories php-qbpwcf

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
3 liveuser 1
<?php
2
 
3
namespace React\Promise;
4
 
5
interface PromisorInterface
6
{
7
    /**
8
     * Returns the promise of the deferred.
9
     *
10
     * @return PromiseInterface
11
     */
12
    public function promise();
13
}