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