From 5b892076498bc7b13e766cf18905193221df6f33 Mon Sep 17 00:00:00 2001 From: dnsimmons Date: Sun, 25 Jul 2021 20:27:33 -0400 Subject: [PATCH] Fix constant spelling --- src/config/openweather.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/config/openweather.php b/src/config/openweather.php index b08b497..93e90d0 100644 --- a/src/config/openweather.php +++ b/src/config/openweather.php @@ -1,14 +1,14 @@ 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') ];