1 | <?php declare(strict_types=1); |
||
8 | abstract class EmptyCommit implements CommitInterface, EmptyResourceInterface |
||
9 | { |
||
10 | /** |
||
11 | * @return string |
||
12 | */ |
||
13 | 2 | public function url() : string |
|
17 | |||
18 | /** |
||
19 | * @return User |
||
20 | */ |
||
21 | 2 | public function author() : User |
|
25 | |||
26 | /** |
||
27 | * @return User |
||
28 | */ |
||
29 | 2 | public function comitter() : User |
|
33 | |||
34 | /** |
||
35 | * @return string |
||
36 | */ |
||
37 | 2 | public function message() : string |
|
41 | |||
42 | /** |
||
43 | * @return Tree |
||
44 | */ |
||
45 | 2 | public function tree() : Tree |
|
49 | |||
50 | /** |
||
51 | * @return int |
||
52 | */ |
||
53 | 2 | public function commentCount() : int |
|
57 | |||
58 | /** |
||
59 | * @return string |
||
60 | */ |
||
61 | 2 | public function protectionUrl() : string |
|
65 | } |
||
66 |