![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/generated/code/Magento/Config/Model/Config/Structure/Data/ |
<?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(); } }