1 | <?php declare(strict_types=1); |
||
11 | abstract class RepositoryKey extends AbstractResource implements RepositoryKeyInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var string |
||
15 | */ |
||
16 | protected $key; |
||
17 | |||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $fingerprint; |
||
22 | |||
23 | /** |
||
24 | * @return string |
||
25 | */ |
||
26 | 4 | public function key(): string |
|
30 | |||
31 | /** |
||
32 | * @return string |
||
33 | */ |
||
34 | 4 | public function fingerprint(): string |
|
38 | } |
||
39 |