Skip to content

Commit 6f18eed

Browse files
committed
Update default timezone value
In case the ENV timezone value is missing, which should never happen as it is a require .env variable
1 parent 4e18a9f commit 6f18eed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/settings.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
ini_set('display_errors', IS_DEBUG_MODE);
88

99
// Timezone
10-
date_default_timezone_set($_ENV['TIMEZONE'] ?? 'Europe/Dublin');
10+
date_default_timezone_set($_ENV['TIMEZONE'] ?? 'Europe/London');
1111

1212
// Settings
1313
$settings = [];

0 commit comments

Comments
 (0)