From b0d2c5e1433437864771451a26db98366b523771 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Fri, 13 May 2022 23:45:53 -0600 Subject: [PATCH] Hardcode UTC application timezone --- config/app.php | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/config/app.php b/config/app.php index eb1ca77ad..93273b625 100644 --- a/config/app.php +++ b/config/app.php @@ -55,17 +55,10 @@ return [ 'url' => env('APP_URL', 'https://localhost'), /* - |-------------------------------------------------------------------------- - | Application Timezone - |-------------------------------------------------------------------------- - | - | Here you may specify the default timezone for your application, which - | will be used by the PHP date and date-time functions. We have gone - | ahead and set this to a sensible default for you out of the box. - | - */ + * Do not edit your timezone or things will break! + */ - 'timezone' => env('APP_TIMEZONE', 'UTC'), + 'timezone' => 'UTC', /* |--------------------------------------------------------------------------