| 1 | <?php declare(strict_types=1); |
||
| 8 | abstract class EmptyCommunityHealth implements CommunityHealthInterface, EmptyResourceInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @return int |
||
| 12 | */ |
||
| 13 | 2 | public function healthPercentage() : int |
|
| 17 | |||
| 18 | /** |
||
| 19 | * @return Repository\CommunityHealth\Files |
||
| 20 | */ |
||
| 21 | 2 | public function files() : Repository\CommunityHealth\Files |
|
| 25 | |||
| 26 | /** |
||
| 27 | * @return bool |
||
| 28 | */ |
||
| 29 | 2 | public function protected() : bool |
|
| 33 | |||
| 34 | /** |
||
| 35 | * @return DateTimeInterface |
||
| 36 | */ |
||
| 37 | 2 | public function updatedAt() : DateTimeInterface |
|
| 41 | } |
||
| 42 |