| 1 | <?php declare(strict_types=1); |
||
| 7 | abstract class EmptyCombinedStatus implements CombinedStatusInterface, EmptyResourceInterface |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @return string |
||
| 11 | */ |
||
| 12 | 2 | public function state(): string |
|
| 16 | |||
| 17 | /** |
||
| 18 | * @return string |
||
| 19 | */ |
||
| 20 | 2 | public function sha(): string |
|
| 24 | |||
| 25 | /** |
||
| 26 | * @return string |
||
| 27 | */ |
||
| 28 | 2 | public function url(): string |
|
| 32 | |||
| 33 | /** |
||
| 34 | * @return int |
||
| 35 | */ |
||
| 36 | 2 | public function totalCount(): int |
|
| 40 | |||
| 41 | /** |
||
| 42 | * @return Repository\Commit\Status |
||
| 43 | */ |
||
| 44 | 2 | public function statuses(): Repository\Commit\Status |
|
| 48 | |||
| 49 | /** |
||
| 50 | * @return Repository |
||
| 51 | */ |
||
| 52 | public function repository(): Repository |
||
| 56 | } |
||
| 57 |