1<?php
2
3namespace React\Promise;
4
5interface CancellablePromiseInterface extends PromiseInterface
6{
7    /**
8     * @return void
9     */
10    public function cancel();
11}
12