Your IP : 216.73.216.38
<?php
/**
* Default application path for backend area
*
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\TestFramework\Backend\App;
use Magento\Framework\App\Config\ScopeConfigInterface;
/**
* Backend config accessor.
*/
class Config extends \Magento\Backend\App\Config
{
/**
* @var \Magento\TestFramework\App\MutableScopeConfig
*/
private $mutableScopeConfig;
/**
* Config constructor.
* @param \Magento\TestFramework\App\Config $appConfig
* @param \Magento\TestFramework\App\MutableScopeConfig $mutableScopeConfig
*/
public function __construct(
\Magento\TestFramework\App\Config $appConfig,
\Magento\TestFramework\App\MutableScopeConfig $mutableScopeConfig
) {
parent::__construct($appConfig);
$this->mutableScopeConfig = $mutableScopeConfig;
}
/**
* @inheritdoc
*/
public function setValue(
$path,
$value,
$scope = ScopeConfigInterface::SCOPE_TYPE_DEFAULT,
$scopeCode = null
) {
$this->mutableScopeConfig->setValue($path, $value, $scope, $scopeCode);
}
}