1 | <?php declare(strict_types=1); |
||
7 | abstract class EmptyRef implements RefInterface, EmptyResourceInterface |
||
8 | { |
||
9 | /** |
||
10 | * @return string |
||
11 | */ |
||
12 | public function ref(): string |
||
16 | |||
17 | /** |
||
18 | * @return string |
||
19 | */ |
||
20 | public function url(): string |
||
24 | |||
25 | /** |
||
26 | * @return Git\Ref\Object_ |
||
27 | */ |
||
28 | public function object(): Git\Ref\Object_ |
||
32 | } |
||
33 |