| Current Path : /home/rtorresani/www/generated/code/Magento/Config/Model/Config/Structure/Data/ |
| Current File : //home/rtorresani/www/generated/code/Magento/Config/Model/Config/Structure/Data/Interceptor.php |
<?php
namespace Magento\Config\Model\Config\Structure\Data;
/**
* Interceptor class for @see \Magento\Config\Model\Config\Structure\Data
*/
class Interceptor extends \Magento\Config\Model\Config\Structure\Data implements \Magento\Framework\Interception\InterceptorInterface
{
use \Magento\Framework\Interception\Interceptor;
public function __construct(\Magento\Config\Model\Config\Structure\Reader $reader, \Magento\Framework\Config\ScopeInterface $configScope, \Magento\Framework\Config\CacheInterface $cache, $cacheId, ?\Magento\Framework\Serialize\SerializerInterface $serializer = null)
{
$this->___init();
parent::__construct($reader, $configScope, $cache, $cacheId, $serializer);
}
/**
* {@inheritdoc}
*/
public function merge(array $config)
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'merge');
return $pluginInfo ? $this->___callPlugins('merge', func_get_args(), $pluginInfo) : parent::merge($config);
}
/**
* {@inheritdoc}
*/
public function get($path = null, $default = null)
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'get');
return $pluginInfo ? $this->___callPlugins('get', func_get_args(), $pluginInfo) : parent::get($path, $default);
}
/**
* {@inheritdoc}
*/
public function reset()
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'reset');
return $pluginInfo ? $this->___callPlugins('reset', func_get_args(), $pluginInfo) : parent::reset();
}
}