Spaces-API/aws/GuzzleHttp/Promise/PromisorInterface.php
Devang Srivastava eefa32741e spaces.php
2017-12-07 21:23:18 +05:30

15 lines
243 B
PHP

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