34968-vm/vendor/guzzlehttp/promises/src/PromisorInterface.php
Flatlogic Bot 42cfa7481c V19
2025-10-16 08:36:38 +00: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;
}