1 | <?php declare(strict_types=1); |
||
7 | abstract class EmptyCompare implements CompareInterface, EmptyResourceInterface |
||
8 | { |
||
9 | /** |
||
10 | * @return string |
||
11 | */ |
||
12 | public function url(): string |
||
16 | |||
17 | /** |
||
18 | * @return Repository\Commit |
||
19 | */ |
||
20 | public function baseCommit(): Repository\Commit |
||
24 | |||
25 | /** |
||
26 | * @return Repository\Commit |
||
27 | */ |
||
28 | public function mergeBaseCommit(): Repository\Commit |
||
32 | |||
33 | /** |
||
34 | * @return string |
||
35 | */ |
||
36 | public function status(): string |
||
40 | |||
41 | /** |
||
42 | * @return int |
||
43 | */ |
||
44 | public function aheadBy(): int |
||
48 | |||
49 | /** |
||
50 | * @return int |
||
51 | */ |
||
52 | public function behindBy(): int |
||
56 | |||
57 | /** |
||
58 | * @return int |
||
59 | */ |
||
60 | public function totalCommits(): int |
||
64 | |||
65 | /** |
||
66 | * @return Repository\Commit |
||
67 | */ |
||
68 | public function commits(): Repository\Commit |
||
72 | |||
73 | /** |
||
74 | * @return Repository\Commit\File |
||
75 | */ |
||
76 | public function files(): Repository\Commit\File |
||
80 | } |
||
81 |