Skip to content

Commit 041ac3f

Browse files
committed
- Fixed identation
1 parent 7402c67 commit 041ac3f

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

lib/internal/Magento/Framework/Locale/TranslatedLists.php

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -105,11 +105,8 @@ public function getOptionTimezones()
105105
$zones = \DateTimeZone::listIdentifiers(\DateTimeZone::ALL) ?: [];
106106
foreach ($zones as $code) {
107107
$options[] = [
108-
'label' => \IntlTimeZone::createTimeZone($code)->getDisplayName(
109-
false,
110-
\IntlTimeZone::DISPLAY_LONG,
111-
$locale
112-
) . ' (' . $code . ')',
108+
'label' => \IntlTimeZone::createTimeZone($code)
109+
->getDisplayName(false, \IntlTimeZone::DISPLAY_LONG, $locale) . ' (' . $code . ')',
113110
'value' => $code,
114111
];
115112
}

0 commit comments

Comments
 (0)