| 1 | <?php declare(strict_types=1); |
||
| 7 | abstract class EmptySSHKey implements SSHKeyInterface, EmptyResourceInterface |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @return int |
||
| 11 | */ |
||
| 12 | 2 | public function id(): int |
|
| 16 | |||
| 17 | /** |
||
| 18 | * @return string |
||
| 19 | */ |
||
| 20 | 2 | public function description(): string |
|
| 24 | |||
| 25 | /** |
||
| 26 | * @return string |
||
| 27 | */ |
||
| 28 | 2 | public function fingerprint(): string |
|
| 32 | } |
||
| 33 |