| 1 | <?php declare(strict_types=1); |
||
| 7 | abstract class EmptyAstronomy implements AstronomyInterface, EmptyResourceInterface |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @return Response |
||
| 11 | */ |
||
| 12 | 2 | public function response() : Response |
|
| 16 | |||
| 17 | /** |
||
| 18 | * @return Astronomy\MoonPhase |
||
| 19 | */ |
||
| 20 | 2 | public function moonPhase() : Astronomy\MoonPhase |
|
| 24 | |||
| 25 | /** |
||
| 26 | * @return Astronomy\SunPhase |
||
| 27 | */ |
||
| 28 | 2 | public function sunPhase() : Astronomy\SunPhase |
|
| 32 | } |
||
| 33 |