/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
dev/tests/integration/framework/Magento/TestFramework/Config.php
53 строки
1 KB
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 10:44
22 окт 2025, 10:44
264bea2
Код
Авторство
О чём код?
<?php /** * Copyright 2015 Adobe * All Rights Reserved. */ 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; } }