oont-contents/plugins/google-site-kit/third-party/guzzlehttp/promises/src/PromisorInterface.php
2025-02-08 15:10:23 +01:00

16 lines
273 B
PHP

<?php
namespace Google\Site_Kit_Dependencies\GuzzleHttp\Promise;
/**
* Interface used with classes that return a promise.
*/
interface PromisorInterface
{
/**
* Returns a promise.
*
* @return PromiseInterface
*/
public function promise();
}