We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d34160a commit 07c255fCopy full SHA for 07c255f
dev/tests/integration/testsuite/Magento/Deploy/_files/config_data.php
@@ -10,7 +10,10 @@
10
use Magento\TestFramework\Helper\Bootstrap;
11
use Magento\Theme\Model\ResourceModel\Theme\Collection;
12
13
+$objectManager = Bootstrap::getObjectManager();
14
+$configFactory = $objectManager->create(Factory::class);
15
$themeList = $objectManager->create(Collection::class);
16
+
17
$configData = [
18
'default' => [
19
'web/test/test_value_1' => 'http://local2.test/',
@@ -42,9 +45,6 @@
42
45
],
43
46
];
44
47
-$objectManager = Bootstrap::getObjectManager();
-$configFactory = $objectManager->create(Factory::class);
-
48
foreach ($configData as $scope => $data) {
49
if ($scope === ScopeConfigInterface::SCOPE_TYPE_DEFAULT) {
50
foreach ($data as $path => $value) {
0 commit comments