@@ -10,7 +10,9 @@ For more details please check [here](http://openweathermap.org/current).
10
10
11
11
* By calling Weather service
12
12
``` php
13
- /** @var $weather \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\WeatherInterface */
13
+ /**
14
+ * @var $weather \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\WeatherInterface
15
+ */
14
16
$data = $weather->fetchWeatherDataByCityName(
15
17
'London'
16
18
);
@@ -38,7 +40,9 @@ $data = $weather->fetchWeatherDataByCityName(
38
40
39
41
* By calling Weather service
40
42
``` php
41
- /** @var $weather \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\WeatherInterface */
43
+ /**
44
+ * @var $weather \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\WeatherInterface
45
+ */
42
46
$data = $weather->fetchWeatherDataByCityId(
43
47
2172797
44
48
);
@@ -66,7 +70,9 @@ $data = $weather->fetchWeatherDataByCityId(
66
70
67
71
* By calling Weather service
68
72
``` php
69
- /** @var $weather \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\WeatherInterface */
73
+ /**
74
+ * @var $weather \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\WeatherInterface
75
+ */
70
76
$data = $weather->fetchWeatherDataByGeographicCoordinates(
71
77
35, 139
72
78
);
@@ -95,7 +101,9 @@ $data = $weather->fetchWeatherDataByGeographicCoordinates(
95
101
96
102
* By calling Weather service
97
103
``` php
98
- /** @var $weather \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\WeatherInterface */
104
+ /**
105
+ * @var $weather \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\WeatherInterface
106
+ */
99
107
$data = $weather->fetchWeatherDataByZipCode(
100
108
94040
101
109
);
@@ -123,7 +131,9 @@ $data = $weather->fetchWeatherDataByZipCode(
123
131
124
132
* By calling Weather service
125
133
``` php
126
- /** @var $weather \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\WeatherInterface */
134
+ /**
135
+ * @var $weather \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\WeatherInterface
136
+ */
127
137
$data = $weather->fetchWeatherDataForCitiesWithinRectangleZone(
128
138
array(12, 32, 15, 37, 10), 'yes'
129
139
);
@@ -156,7 +166,9 @@ $data = $weather->fetchWeatherDataForCitiesWithinRectangleZone(
156
166
157
167
* By calling Weather service
158
168
``` php
159
- /** @var $weather \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\WeatherInterface */
169
+ /**
170
+ * @var $weather \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\WeatherInterface
171
+ */
160
172
$data = $weather->fetchWeatherDataForCitiesInCycle(
161
173
55.5, 37.5, 'yes', 10
162
174
);
@@ -187,7 +199,9 @@ $data = $weather->fetchWeatherDataForCitiesInCycle(
187
199
188
200
* By calling Weather service
189
201
``` php
190
- /** @var $weather \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\WeatherInterface */
202
+ /**
203
+ * @var $weather \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\WeatherInterface
204
+ */
191
205
$data = $weather->fetchWeatherDataForSeveralCityIds(
192
206
array(524901, 703448, 2643743)
193
207
);
@@ -209,7 +223,9 @@ For more details please check [here](http://openweathermap.org/forecast5).
209
223
210
224
* By calling HourForecast service
211
225
``` php
212
- /** @var $hourForecast \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\HourForecastInterface */
226
+ /**
227
+ * @var $hourForecast \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\HourForecastInterface
228
+ */
213
229
$data = $hourForecast->fetchForecastByCityName(
214
230
'London'
215
231
);
@@ -237,7 +253,9 @@ $data = $hourForecast->fetchForecastByCityName(
237
253
238
254
* By calling HourForecast service
239
255
``` php
240
- /** @var $hourForecast \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\HourForecastInterface */
256
+ /**
257
+ * @var $hourForecast \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\HourForecastInterface
258
+ */
241
259
$data = $hourForecast->fetchForecastByCityId(
242
260
524901
243
261
);
@@ -265,7 +283,9 @@ $data = $hourForecast->fetchForecastByCityId(
265
283
266
284
* By calling HourForecast service
267
285
``` php
268
- /** @var $hourForecast \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\HourForecastInterface */
286
+ /**
287
+ * @var $hourForecast \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\HourForecastInterface
288
+ */
269
289
$data = $hourForecast->fetchForecastByCityGeographicCoordinates(
270
290
35, 139
271
291
);
@@ -299,7 +319,9 @@ For more details please check [here](http://openweathermap.org/forecast16).
299
319
300
320
* By calling DailyForecast service
301
321
``` php
302
- /** @var $dailyForecast \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\DailyForecastInterface */
322
+ /**
323
+ * @var $dailyForecast \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\DailyForecastInterface
324
+ */
303
325
$data = $dailyForecast->fetchForecastByCityName(
304
326
'London'
305
327
);
@@ -327,7 +349,9 @@ $data = $dailyForecast->fetchForecastByCityName(
327
349
328
350
* By calling DailyForecast service
329
351
``` php
330
- /** @var $dailyForecast \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\DailyForecastInterface */
352
+ /**
353
+ * @var $dailyForecast \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\DailyForecastInterface
354
+ */
331
355
$data = $dailyForecast->fetchForecastByCityId(
332
356
524901
333
357
);
@@ -355,7 +379,9 @@ $data = $dailyForecast->fetchForecastByCityId(
355
379
356
380
* By calling DailyForecast service
357
381
``` php
358
- /** @var $dailyForecast \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\DailyForecastInterface */
382
+ /**
383
+ * @var $dailyForecast \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\DailyForecastInterface
384
+ */
359
385
$data = $dailyForecast->fetchForecastByCityGeographicCoordinates(
360
386
55, 37
361
387
);
@@ -389,7 +415,9 @@ For more details please check [here](http://openweathermap.org/api/uvi).
389
415
390
416
* By calling UltravioletIndex service
391
417
``` php
392
- /** @var $ultravioletIndex \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\UltravioletIndexInterface */
418
+ /**
419
+ * @var $ultravioletIndex \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\UltravioletIndexInterface
420
+ */
393
421
$data = $ultravioletIndex->fetchUltraviletIndex(
394
422
55, 37
395
423
);
@@ -423,7 +451,9 @@ For more details please check [here](http://openweathermap.org/api_station).
423
451
424
452
* By calling WeatherStations service
425
453
``` php
426
- /** @var $weatherStations \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\WeatherStationsInterface */
454
+ /**
455
+ * @var $weatherStations \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\WeatherStationsInterface
456
+ */
427
457
$data = $weatherStations->fetchFromOnStationById(29584);
428
458
429
459
```
@@ -447,7 +477,9 @@ $data = $weatherStations->fetchFromOnStationById(29584);
447
477
448
478
* By calling WeatherStations service
449
479
``` php
450
- /** @var $weatherStations \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\WeatherStationsInterface */
480
+ /**
481
+ * @var $weatherStations \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\WeatherStationsInterface
482
+ */
451
483
$data = $weatherStations->fetchFromSeveralByRectangleZone(
452
484
array(8.87, 49.07, 65.21, 61.26, 6), 'yes', 10
453
485
);
@@ -481,7 +513,9 @@ $data = $weatherStations->fetchFromSeveralByRectangleZone(
481
513
482
514
* By calling WeatherStations service
483
515
``` php
484
- /** @var $weatherStations \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\WeatherStationsInterface */
516
+ /**
517
+ * @var $weatherStations \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\WeatherStationsInterface
518
+ */
485
519
$data = $weatherStations->fetchFromSeveralByGeoPoint(
486
520
55, 37
487
521
);
@@ -515,7 +549,9 @@ For details about CO check [here](http://openweathermap.org/api/pollution/co) an
515
549
516
550
* By calling AirPollution service
517
551
``` php
518
- /** @var $airPollution \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\AirPollutionInterface */
552
+ /**
553
+ * @var $airPollution \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\AirPollutionInterface
554
+ */
519
555
$data = $airPollution->fetchOzoneData(35, 139);
520
556
521
557
```
@@ -539,7 +575,9 @@ $data = $airPollution->fetchOzoneData(35, 139);
539
575
540
576
* By calling AirPollution service
541
577
``` php
542
- /** @var $airPollution \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\AirPollutionInterface */
578
+ /**
579
+ * @var $airPollution \Netgen\Bundle\OpenWeatherMapBundle\API\OpenWeatherMap\Weather\AirPollutionInterface
580
+ */
543
581
$data = $airPollution->fetchCarbonMonoxideData(35, 139);
544
582
545
583
```
0 commit comments