14 lines
195 B
PHP
14 lines
195 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace React\Promise;
|
||
|
|
|
||
|
|
interface PromisorInterface
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* Returns the promise of the deferred.
|
||
|
|
*
|
||
|
|
* @return PromiseInterface
|
||
|
|
*/
|
||
|
|
public function promise();
|
||
|
|
}
|