Codebase list php-react-promise / upstream/2.1.0 src / PromisorInterface.php
upstream/2.1.0

Tree @upstream/2.1.0 (Download .tar.gz)

PromisorInterface.php @upstream/2.1.0raw · history · blame

<?php

namespace React\Promise;

interface PromisorInterface
{
    /**
     * @return PromiseInterface
     */
    public function promise();
}