Total Lines | 17 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
11 | interface AsyncClientInterface |
||
12 | { |
||
13 | /** |
||
14 | * @return PromiseInterface |
||
15 | */ |
||
16 | public function overview(): PromiseInterface; |
||
17 | |||
18 | /** |
||
19 | * @return ObservableInterface |
||
20 | */ |
||
21 | public function queues(): ObservableInterface; |
||
22 | |||
23 | /** |
||
24 | * @return ObservableInterface |
||
25 | */ |
||
26 | public function connections(): ObservableInterface; |
||
27 | } |
||
28 |