Skip to content

Commit

Permalink
Fix constant spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
dnsimmons committed Jul 26, 2021
1 parent b51bd7e commit 5b89207
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/config/openweather.php
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<?php

return [
'api_key' => env('OPENWHETHER_API_KEY'),
'api_key' => env('OPENWEATHER_API_KEY'),
'api_endpoint_current' => 'https://api.openweathermap.org/data/2.5/weather?',
'api_endpoint_forecast' => 'https://api.openweathermap.org/data/2.5/forecast?',
'api_endpoint_onecall' => 'https://api.openweathermap.org/data/2.5/onecall?',
'api_endpoint_history' => 'https://api.openweathermap.org/data/2.5/onecall/timemachine?',
'api_endpoint_icons' => 'https://openweathermap.org/img/w/',
'api_lang' => env('OPENWHETHER_API_LANG', 'en'),
'format_date' => env('OPENWHETHER_API_DATE_FORMAT', 'm/d/Y'),
'format_time' => env('OPENWHETHER_API_TIME_FORMAT', 'h:i A'),
'format_day' => env('OPENWHETHER_API_DAY_FOPMAT', 'l')
'api_lang' => env('OPENWEATHER_API_LANG', 'en'),
'format_date' => env('OPENWEATHER_API_DATE_FORMAT', 'm/d/Y'),
'format_time' => env('OPENWEATHER_API_TIME_FORMAT', 'h:i A'),
'format_day' => env('OPENWEATHER_API_DAY_FOPMAT', 'l')
];

0 comments on commit 5b89207

Please sign in to comment.