Repository URL to install this package:
|
Version:
0.1.19-1 ▾
|
odigos-demo-currency
/
opt
/
odigos-demo-currency
/
vendor
/
guzzlehttp
/
promises
/
src
/
PromisorInterface.php
|
|---|
<?php
declare(strict_types=1);
namespace GuzzleHttp\Promise;
/**
* Interface used with classes that return a promise.
*/
interface PromisorInterface
{
/**
* Returns a promise.
*/
public function promise(): PromiseInterface;
}