Skip to content

Commit f12d104

Browse files
author
Dmytro Voskoboinikov
committed
MAGETWO-37616: Prepare PR
1 parent e592767 commit f12d104

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/code/Magento/Config/Model/Config/Source/Locale/Timezone.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function __construct(\Magento\Framework\Locale\ListsInterface $localeList
4040
public function toOptionArray()
4141
{
4242
$timezones = $this->_localeLists->getOptionTimezones();
43-
$timezones = array_filter($timezones, function($value) {
43+
$timezones = array_filter($timezones, function ($value) {
4444
if (in_array($value['value'], $this->ignoredTimezones)) {
4545
return false;
4646
}

app/code/Magento/Config/Test/Unit/Model/Config/Source/Locale/TimezoneTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
* Copyright © 2015 Magento. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6-
namespace Magento\Config\Test\Unit\Model\Config\Locale;
6+
namespace Magento\Config\Test\Unit\Model\Config\Source\Locale;
77

8-
class LoaderTest extends \PHPUnit_Framework_TestCase
8+
class TimezoneTest extends \PHPUnit_Framework_TestCase
99
{
1010
/**
1111
* @var \PHPUnit_Framework_MockObject_MockObject

0 commit comments

Comments
 (0)