PromisorInterface.php in Auth0 Single Sign On 8.2
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. |