Skip to content

Commit 07c255f

Browse files
author
Karpenko, Oleksandr
committed
MAGETWO-69426: app:config:dump exports ids to the config file
1 parent d34160a commit 07c255f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dev/tests/integration/testsuite/Magento/Deploy/_files/config_data.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@
1010
use Magento\TestFramework\Helper\Bootstrap;
1111
use Magento\Theme\Model\ResourceModel\Theme\Collection;
1212

13+
$objectManager = Bootstrap::getObjectManager();
14+
$configFactory = $objectManager->create(Factory::class);
1315
$themeList = $objectManager->create(Collection::class);
16+
1417
$configData = [
1518
'default' => [
1619
'web/test/test_value_1' => 'http://local2.test/',
@@ -42,9 +45,6 @@
4245
],
4346
];
4447

45-
$objectManager = Bootstrap::getObjectManager();
46-
$configFactory = $objectManager->create(Factory::class);
47-
4848
foreach ($configData as $scope => $data) {
4949
if ($scope === ScopeConfigInterface::SCOPE_TYPE_DEFAULT) {
5050
foreach ($data as $path => $value) {

0 commit comments

Comments
 (0)