| 1 | <?php |
||
| 16 | class WunderGround extends WeatherAbstract |
||
| 17 | { |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param Point $point |
||
| 21 | * |
||
| 22 | * @internal |
||
| 23 | * @return Current |
||
| 24 | */ |
||
| 25 | protected function doFetchCurrent(Point $point) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @param Point $point |
||
| 32 | * @return Hourly |
||
| 33 | */ |
||
| 34 | protected function doFetchHourly(Point $point) |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @param Point $point |
||
| 41 | * |
||
| 42 | * @internal |
||
| 43 | * @return string |
||
| 44 | */ |
||
| 45 | protected function getCacheKeyCurrent(Point $point) |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @param Point $point |
||
| 52 | * |
||
| 53 | * @internal |
||
| 54 | * @return string |
||
| 55 | */ |
||
| 56 | protected function getCacheKeyHourly(Point $point) |
||
| 60 | |||
| 61 | /** |
||
| 62 | * |
||
| 63 | * @internal |
||
| 64 | * @return \DateTime |
||
| 65 | */ |
||
| 66 | protected function getCacheExpirationCurrent() |
||
| 70 | |||
| 71 | /** |
||
| 72 | * |
||
| 73 | * @internal |
||
| 74 | * @return \DateTime |
||
| 75 | */ |
||
| 76 | protected function getCacheExpirationHourly() |
||
| 80 | } |
||
| 81 |