@@ -41,37 +41,37 @@ class OpenWeatherMap
41
41
*
42
42
* @var string $copyright
43
43
*/
44
- const COPYRIGHT = "Weather data from <a href= \"http ://openweathermap.org \">OpenWeatherMap.org</a> " ;
44
+ const COPYRIGHT = "Weather data from <a href= \"https ://openweathermap.org \">OpenWeatherMap.org</a> " ;
45
45
46
46
/**
47
47
* @var string The basic api url to fetch weather data from.
48
48
*/
49
- private $ weatherUrl = 'http ://api.openweathermap.org/data/2.5/weather? ' ;
49
+ private $ weatherUrl = 'https ://api.openweathermap.org/data/2.5/weather? ' ;
50
50
51
51
/**
52
52
* @var string The basic api url to fetch weather group data from.
53
53
*/
54
- private $ weatherGroupUrl = 'http ://api.openweathermap.org/data/2.5/group? ' ;
54
+ private $ weatherGroupUrl = 'https ://api.openweathermap.org/data/2.5/group? ' ;
55
55
56
56
/**
57
57
* @var string The basic api url to fetch weekly forecast data from.
58
58
*/
59
- private $ weatherHourlyForecastUrl = 'http ://api.openweathermap.org/data/2.5/forecast? ' ;
59
+ private $ weatherHourlyForecastUrl = 'https ://api.openweathermap.org/data/2.5/forecast? ' ;
60
60
61
61
/**
62
62
* @var string The basic api url to fetch daily forecast data from.
63
63
*/
64
- private $ weatherDailyForecastUrl = 'http ://api.openweathermap.org/data/2.5/forecast/daily? ' ;
64
+ private $ weatherDailyForecastUrl = 'https ://api.openweathermap.org/data/2.5/forecast/daily? ' ;
65
65
66
66
/**
67
67
* @var string The basic api url to fetch history weather data from.
68
68
*/
69
- private $ weatherHistoryUrl = 'http ://history.openweathermap.org/data/2.5/history/city? ' ;
69
+ private $ weatherHistoryUrl = 'https ://history.openweathermap.org/data/2.5/history/city? ' ;
70
70
71
71
/**
72
72
* @var string The basic api url to fetch uv index data from.
73
73
*/
74
- private $ uvIndexUrl = 'http ://api.openweathermap.org/v3/uvi ' ;
74
+ private $ uvIndexUrl = 'https ://api.openweathermap.org/v3/uvi ' ;
75
75
76
76
/**
77
77
* @var AbstractCache|bool $cache The cache to use.
0 commit comments