add todos

This commit is contained in:
Aliberk Sandıkçı 2024-01-01 12:05:20 +03:00
parent 514e2ebc18
commit 212b6b732d
Signed by: asandikci
GPG Key ID: 25C67A03B5666BC1
1 changed files with 2 additions and 1 deletions

View File

@ -36,6 +36,7 @@ class Timezones
protected array $timezones = [
'UTC' => [
'UTC' => 'UTC',
// 'Türkiye' => 'Istanbul (+3:00)', // TODO add this line in proper way
],
'America' => [
'America/Adak' => 'Adak (-10:00)',
@ -530,7 +531,7 @@ class Timezones
*/
public function get_default_timezone(): string
{
return 'UTC';
return 'UTC'; // TODO change this to +3 in proper way
}
/**