mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-02-14 05:30:09 +01:00
17 lines
244 B
PHP
17 lines
244 B
PHP
|
<?php
|
||
|
|
||
|
namespace GuzzleHttp\Promise;
|
||
|
|
||
|
/**
|
||
|
* Interface used with classes that return a promise.
|
||
|
*/
|
||
|
interface PromisorInterface
|
||
|
{
|
||
|
/**
|
||
|
* Returns a promise.
|
||
|
*
|
||
|
* @return PromiseInterface
|
||
|
*/
|
||
|
public function promise();
|
||
|
}
|