b374k
m1n1 1.01
Apache/2.4.41 (Ubuntu)
Linux vmi616275.contaboserver.net 5.4.0-84-generic #94-Ubuntu SMP Thu Aug 26 20:27:37 UTC 2021 x86_64
uid=33(www-data) gid=33(www-data) groups=33(www-data)
server ip : 62.171.164.128 | your ip : 127.0.0.1
safemode OFF
 >  / home / dev2.destoffenstraat.com / dev / tests / integration / framework / Magento / TestFramework /
Filename/home/dev2.destoffenstraat.com/dev/tests/integration/framework/Magento/TestFramework/Config.php
Size1.21 kb
Permissionrw-r--r--
Ownerroot : root
Create time17-Aug-2025 10:26
Last modified28-Jan-2025 06:45
Last accessed23-Aug-2025 02:07
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\TestFramework;

use Magento\Framework\App\Config\MutableScopeConfigInterface;

class Config
{
/**
* @var MutableScopeConfigInterface
*/
private $mutableScopeConfig;

/**
* @var array
*/
private $configData;

/**
* @param MutableScopeConfigInterface $mutableScopeConfig
* @param string $configPath
*/
public function __construct(MutableScopeConfigInterface $mutableScopeConfig, $configPath)
{
$this->mutableScopeConfig = $mutableScopeConfig;
$this->configData = $this->readFile($configPath);
}

/**
* Rewrite config from integration config to global config
*/
public function rewriteAdditionalConfig()
{
foreach ($this->configData as $path => $value) {
$this->mutableScopeConfig->setValue($path, $value, \Magento\Store\Model\ScopeInterface::SCOPE_STORE);
}
}

/**
* @param string $configPath
* @return array
*/
private function readFile($configPath)
{
/** @var array $config */
$config = require $configPath;

return $config;
}
}