| 1 | <?php declare(strict_types=1); |
||
| 17 | abstract class Astronomy extends AbstractResource implements AstronomyInterface |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var Response |
||
| 21 | */ |
||
| 22 | protected $response; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var Astronomy\MoonPhase |
||
| 26 | */ |
||
| 27 | protected $moon_phase; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @var Astronomy\SunPhase |
||
| 31 | */ |
||
| 32 | protected $sun_phase; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return Response |
||
| 36 | */ |
||
| 37 | public function response() : Response |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @return Astronomy\MoonPhase |
||
| 44 | */ |
||
| 45 | public function moonPhase() : Astronomy\MoonPhase |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @return Astronomy\SunPhase |
||
| 52 | */ |
||
| 53 | public function sunPhase() : Astronomy\SunPhase |
||
| 57 | } |
||
| 58 |