1 | <?php |
||
8 | abstract class SSHKey implements SSHKeyInterface |
||
9 | { |
||
10 | use TransportAwareTrait; |
||
11 | |||
12 | /** |
||
13 | * @var int |
||
14 | */ |
||
15 | protected $id; |
||
16 | |||
17 | /** |
||
18 | * @var string |
||
19 | */ |
||
20 | protected $description; |
||
21 | |||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | protected $fingerprint; |
||
26 | |||
27 | /** |
||
28 | * @return int |
||
29 | */ |
||
30 | public function id() : int |
||
34 | |||
35 | /** |
||
36 | * @return string |
||
37 | */ |
||
38 | public function description() : string |
||
42 | |||
43 | /** |
||
44 | * @return string |
||
45 | */ |
||
46 | public function fingerprint() : string |
||
50 | } |
||
51 |