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

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

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

<?php

namespace React\Promise;

interface CancellablePromiseInterface extends PromiseInterface
{
    /**
     * @return void
     */
    public function cancel();
}