surat/roche/vendor/react/promise/src/PromisorInterface.php

14 lines
195 B
PHP
Raw Normal View History

2024-12-25 03:04:59 +00:00
<?php
namespace React\Promise;
interface PromisorInterface
{
/**
* Returns the promise of the deferred.
*
* @return PromiseInterface
*/
public function promise();
}