| 1 | <?php declare(strict_types=1); |
||
| 15 | abstract class Tag extends AbstractResource implements TagInterface |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var string |
||
| 19 | */ |
||
| 20 | protected $name; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var Tree |
||
| 24 | */ |
||
| 25 | protected $commit; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var string |
||
| 29 | */ |
||
| 30 | protected $zipball_url; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @var string |
||
| 34 | */ |
||
| 35 | protected $tarball_url; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @return string |
||
| 39 | */ |
||
| 40 | 4 | public function name(): string |
|
| 44 | |||
| 45 | /** |
||
| 46 | * @return Tree |
||
| 47 | */ |
||
| 48 | public function commit(): Tree |
||
| 52 | |||
| 53 | /** |
||
| 54 | * @return string |
||
| 55 | */ |
||
| 56 | 4 | public function zipballUrl(): string |
|
| 60 | |||
| 61 | /** |
||
| 62 | * @return string |
||
| 63 | */ |
||
| 64 | 4 | public function tarballUrl(): string |
|
| 68 | } |
||
| 69 |