1 | <?php declare(strict_types=1); |
||
11 | abstract class Context extends AbstractResource implements ContextInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var string |
||
15 | */ |
||
16 | protected $node; |
||
17 | |||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $description; |
||
22 | |||
23 | /** |
||
24 | * @var string |
||
25 | */ |
||
26 | protected $path; |
||
27 | |||
28 | /** |
||
29 | * @var string |
||
30 | */ |
||
31 | protected $port; |
||
32 | |||
33 | /** |
||
34 | * @return string |
||
35 | */ |
||
36 | public function node(): string |
||
40 | |||
41 | /** |
||
42 | * @return string |
||
43 | */ |
||
44 | public function description(): string |
||
48 | |||
49 | /** |
||
50 | * @return string |
||
51 | */ |
||
52 | public function path(): string |
||
56 | |||
57 | /** |
||
58 | * @return string |
||
59 | */ |
||
60 | public function port(): string |
||
64 | } |
||
65 |