PromisorInterface.php in Zircon Profile 8
Same filename and directory in other branches
Namespace
GuzzleHttp\PromiseFile
vendor/guzzlehttp/promises/src/PromisorInterface.phpView source
<?php
namespace GuzzleHttp\Promise;
/**
* Interface used with classes that return a promise.
*/
interface PromisorInterface {
/**
* Returns a promise.
*
* @return PromiseInterface
*/
public function promise();
}
Interfaces
Name | Description |
---|---|
PromisorInterface | Interface used with classes that return a promise. |