From bd4d53323c05ba327404e54ec562d49851b30f67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20Klabbers?= Date: Thu, 20 Jan 2022 13:42:26 +0100 Subject: [PATCH] fixing error in tests for missing timezone --- src/Foundation/InstalledSite.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Foundation/InstalledSite.php b/src/Foundation/InstalledSite.php index 25d712e63..790066a7c 100644 --- a/src/Foundation/InstalledSite.php +++ b/src/Foundation/InstalledSite.php @@ -159,6 +159,9 @@ class InstalledSite implements SiteInterface protected function getIlluminateConfig() { return new ConfigRepository([ + 'app' => [ + 'timezone' => 'UTC' + ], 'view' => [ 'paths' => [], 'compiled' => $this->paths->storage.'/views',