1 | <?php declare(strict_types=1); |
||
7 | abstract class EmptyListener implements ListenerInterface, EmptyResourceInterface |
||
8 | { |
||
9 | /** |
||
10 | * @return string |
||
11 | */ |
||
12 | public function node() : string |
||
16 | |||
17 | /** |
||
18 | * @return string |
||
19 | */ |
||
20 | public function protocol() : string |
||
24 | |||
25 | /** |
||
26 | * @return string |
||
27 | */ |
||
28 | public function ipAddress() : string |
||
32 | |||
33 | /** |
||
34 | * @return int |
||
35 | */ |
||
36 | public function port() : int |
||
40 | } |
||
41 |