Files
juipphp/vendor/guzzlehttp/promises/src/PromisorInterface.php
“wanyongkang” 41ebab71e5 阿里短信验证
2024-03-02 18:14:13 +08:00

17 lines
249 B
PHP

<?php
declare(strict_types=1);
namespace GuzzleHttp\Promise;
/**
* Interface used with classes that return a promise.
*/
interface PromisorInterface
{
/**
* Returns a promise.
*/
public function promise(): PromiseInterface;
}