2023-07-15 10:16:32 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace GuzzleHttp\Promise;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface used with classes that return a promise.
|
|
|
|
*/
|
|
|
|
interface PromisorInterface
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Returns a promise.
|
2023-07-18 11:17:17 +08:00
|
|
|
*
|
|
|
|
* @return PromiseInterface
|
2023-07-15 10:16:32 +08:00
|
|
|
*/
|
2023-07-18 11:17:17 +08:00
|
|
|
public function promise();
|
2023-07-15 10:16:32 +08:00
|
|
|
}
|