1 | <?php |
||
15 | class AirPollution extends Base implements AirPollutionInterface |
||
16 | { |
||
17 | /** |
||
18 | * {@inheritdoc} |
||
19 | */ |
||
20 | public function fetchOzoneData(GeographicCoordinates $coordinates, DateTime $datetime): Ozone |
||
26 | |||
27 | /** |
||
28 | * {@inheritdoc} |
||
29 | */ |
||
30 | public function fetchCarbonMonoxideData(GeographicCoordinates $coordinates, DateTime $datetime): CarbonMonoxide |
||
36 | |||
37 | /** |
||
38 | * {@inheritdoc} |
||
39 | */ |
||
40 | public function fetchSulfurDioxideData(GeographicCoordinates $coordinates, DateTime $datetime): SulfurDioxide |
||
46 | |||
47 | /** |
||
48 | * {@inheritdoc} |
||
49 | */ |
||
50 | public function fetchNitrogenDioxideData(GeographicCoordinates $coordinates, DateTime $datetime): NitrogenDioxide |
||
56 | |||
57 | /** |
||
58 | * @param string $url |
||
59 | * @param GeographicCoordinates $coordinates |
||
60 | * @param DateTime $datetime |
||
61 | * |
||
62 | * @return array |
||
63 | */ |
||
64 | protected function getResultWithParams($url, GeographicCoordinates $coordinates, DateTime $datetime) |
||
72 | } |
||
73 |