File "PromisorInterface.php"

Full Path: /var/www/drive/react/promise/src/PromisorInterface.php
File size: 195 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace React\Promise;

interface PromisorInterface
{
    /**
     * Returns the promise of the deferred.
     *
     * @return PromiseInterface
     */
    public function promise();
}