2024-05-07 12:17:25 +02:00
|
|
|
<?php
|
|
|
|
|
|
2024-05-17 12:24:19 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
2024-05-07 12:17:25 +02:00
|
|
|
namespace GuzzleHttp\Promise;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Interface used with classes that return a promise.
|
|
|
|
|
*/
|
|
|
|
|
interface PromisorInterface
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* Returns a promise.
|
|
|
|
|
*/
|
2024-05-17 12:24:19 +00:00
|
|
|
public function promise(): PromiseInterface;
|
2024-05-07 12:17:25 +02:00
|
|
|
}
|