Codebase list php-react-promise / 70799345-9ffb-488d-b5e6-df3e6a251678/main src / PromisorInterface.php
70799345-9ffb-488d-b5e6-df3e6a251678/main

Tree @70799345-9ffb-488d-b5e6-df3e6a251678/main (Download .tar.gz)

PromisorInterface.php @70799345-9ffb-488d-b5e6-df3e6a251678/mainraw · history · blame

<?php

namespace React\Promise;

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