1 | <?php declare(strict_types=1); |
||
11 | abstract class Links extends AbstractResource implements LinksInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var string |
||
15 | */ |
||
16 | protected $git; |
||
17 | |||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $self; |
||
22 | |||
23 | /** |
||
24 | * @var string |
||
25 | */ |
||
26 | protected $html; |
||
27 | |||
28 | /** |
||
29 | * @return string |
||
30 | */ |
||
31 | 4 | public function git(): string |
|
35 | |||
36 | /** |
||
37 | * @return string |
||
38 | */ |
||
39 | 4 | public function self(): string |
|
43 | |||
44 | /** |
||
45 | * @return string |
||
46 | */ |
||
47 | 4 | public function html(): string |
|
51 | } |
||
52 |