| 1 | <?php declare(strict_types=1); |
||
| 15 | abstract class Ref extends AbstractResource implements RefInterface |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var string |
||
| 19 | */ |
||
| 20 | protected $ref; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var string |
||
| 24 | */ |
||
| 25 | protected $url; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var Git\Ref\Object_ |
||
| 29 | */ |
||
| 30 | protected $object; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @return string |
||
| 34 | */ |
||
| 35 | public function ref(): string |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @return string |
||
| 42 | */ |
||
| 43 | public function url(): string |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @return Git\Ref\Object_ |
||
| 50 | */ |
||
| 51 | public function object(): Git\Ref\Object_ |
||
| 55 | } |
||
| 56 |