2024-07-10 18:28:19 +05:45
|
|
|
<?php
|
|
|
|
|
2024-09-29 16:59:27 +05:45
|
|
|
declare(strict_types=1);
|
|
|
|
|
2024-07-10 18:28:19 +05:45
|
|
|
namespace GuzzleHttp\Promise;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface used with classes that return a promise.
|
|
|
|
*/
|
|
|
|
interface PromisorInterface
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Returns a promise.
|
|
|
|
*/
|
2024-09-29 16:59:27 +05:45
|
|
|
public function promise(): PromiseInterface;
|
2024-07-10 18:28:19 +05:45
|
|
|
}
|