Skip to content

Commit

Permalink
feature/BWA-8-weather-app-github-action
Browse files Browse the repository at this point in the history
- Fix Error in GeocodingServiceTest::testService
- Add API Services URI in the config
  • Loading branch information
nspalo committed Sep 11, 2023
1 parent 200ac20 commit 14d697a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config/services.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
'max_output' => env('OPEN_WEATHER_MAX_OUTPUT', '5'),
'unit' => env('OPEN_WEATHER_UNIT', 'metric'),
'lang' => env('OPEN_WEATHER_LANG', 'en'),
'uri' => env('OPEN_WEATHER_API_URI', ''),
'uri' => env('OPEN_WEATHER_API_URI', 'api.openweathermap.org/data/2.5'),
],
'geoapify' => [
'filter' => env('GEOAPIFY_FILTER', 'countrycode:jp'),
Expand All @@ -46,7 +46,7 @@
'lang' => env('GEOAPIFY_LANG', 'en'),
'max_output' => env('GEOAPIFY_MAX_OUTPUT', '1'),
'type' => env('GEOAPIFY_TYPE', 'city'),
'uri' => env('GEOAPIFY_API_URI', ''),
'uri' => env('GEOAPIFY_API_URI', 'api.geoapify.com/v1/geocode/search'),
'default_search' => env('GEOAPIFY_DEFAULT', 'Tokyo, Japan'),
],
],
Expand Down

0 comments on commit 14d697a

Please sign in to comment.