File "PromisorInterface.php"
Full Path: /var/www/bvnghean.vn/wp-content/plugins/updraftplus/vendor/guzzlehttp/promises/src/PromisorInterface.php
File size: 244 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace GuzzleHttp\Promise;
/**
* Interface used with classes that return a promise.
*/
interface PromisorInterface
{
/**
* Returns a promise.
*
* @return PromiseInterface
*/
public function promise();
}