1 | <?php declare(strict_types=1); |
||
19 | abstract class MoonPhase extends AbstractResource implements MoonPhaseInterface |
||
20 | { |
||
21 | /** |
||
22 | * @var string |
||
23 | */ |
||
24 | protected $percentIlluminated; |
||
25 | |||
26 | /** |
||
27 | * @var string |
||
28 | */ |
||
29 | protected $ageOfMoon; |
||
30 | |||
31 | /** |
||
32 | * @var string |
||
33 | */ |
||
34 | protected $phaseofMoon; |
||
35 | |||
36 | /** |
||
37 | * @var string |
||
38 | */ |
||
39 | protected $hemisphere; |
||
40 | |||
41 | /** |
||
42 | * @var Time |
||
43 | */ |
||
44 | protected $current_time; |
||
45 | |||
46 | /** |
||
47 | * @var Time |
||
48 | */ |
||
49 | protected $sunrise; |
||
50 | |||
51 | /** |
||
52 | * @var Time |
||
53 | */ |
||
54 | protected $sunset; |
||
55 | |||
56 | /** |
||
57 | * @var Time |
||
58 | */ |
||
59 | protected $moonrise; |
||
60 | |||
61 | /** |
||
62 | * @var Time |
||
63 | */ |
||
64 | protected $moonset; |
||
65 | |||
66 | /** |
||
67 | * @return string |
||
68 | */ |
||
69 | 4 | public function percentIlluminated() : string |
|
73 | |||
74 | /** |
||
75 | * @return string |
||
76 | */ |
||
77 | 4 | public function ageOfMoon() : string |
|
81 | |||
82 | /** |
||
83 | * @return string |
||
84 | */ |
||
85 | 4 | public function phaseofMoon() : string |
|
89 | |||
90 | /** |
||
91 | * @return string |
||
92 | */ |
||
93 | 4 | public function hemisphere() : string |
|
97 | |||
98 | /** |
||
99 | * @return Time |
||
100 | */ |
||
101 | public function currentTime() : Time |
||
105 | |||
106 | /** |
||
107 | * @return Time |
||
108 | */ |
||
109 | public function sunrise() : Time |
||
113 | |||
114 | /** |
||
115 | * @return Time |
||
116 | */ |
||
117 | public function sunset() : Time |
||
121 | |||
122 | /** |
||
123 | * @return Time |
||
124 | */ |
||
125 | public function moonrise() : Time |
||
129 | |||
130 | /** |
||
131 | * @return Time |
||
132 | */ |
||
133 | public function moonset() : Time |
||
137 | } |
||
138 |