• File: PromisorInterface.php
  • Full Path: /home/masbinta/public_html/core/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();
}