![]() 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/cartforge.co/generated/code/Magento/Framework/View/Model/Layout/Merge/ |
<?php namespace Magento\Framework\View\Model\Layout\Merge; /** * Interceptor class for @see \Magento\Framework\View\Model\Layout\Merge */ class Interceptor extends \Magento\Framework\View\Model\Layout\Merge implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Framework\View\DesignInterface $design, \Magento\Framework\Url\ScopeResolverInterface $scopeResolver, \Magento\Framework\View\File\CollectorInterface $fileSource, \Magento\Framework\View\File\CollectorInterface $pageLayoutFileSource, \Magento\Framework\App\State $appState, \Magento\Framework\Cache\FrontendInterface $cache, \Magento\Framework\View\Model\Layout\Update\Validator $validator, \Psr\Log\LoggerInterface $logger, \Magento\Framework\Filesystem\File\ReadFactory $readFactory, ?\Magento\Framework\View\Design\ThemeInterface $theme = null, $cacheSuffix = '', ?\Magento\Framework\View\Layout\LayoutCacheKeyInterface $layoutCacheKey = null, ?\Magento\Framework\Serialize\SerializerInterface $serializer = null, ?int $cacheLifetime = null) { $this->___init(); parent::__construct($design, $scopeResolver, $fileSource, $pageLayoutFileSource, $appState, $cache, $validator, $logger, $readFactory, $theme, $cacheSuffix, $layoutCacheKey, $serializer, $cacheLifetime); } /** * {@inheritdoc} */ public function asString() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'asString'); return $pluginInfo ? $this->___callPlugins('asString', func_get_args(), $pluginInfo) : parent::asString(); } /** * {@inheritdoc} */ public function validateUpdate($handle, $updateXml) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'validateUpdate'); return $pluginInfo ? $this->___callPlugins('validateUpdate', func_get_args(), $pluginInfo) : parent::validateUpdate($handle, $updateXml); } /** * {@inheritdoc} */ public function getDbUpdateString($handle) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDbUpdateString'); return $pluginInfo ? $this->___callPlugins('getDbUpdateString', func_get_args(), $pluginInfo) : parent::getDbUpdateString($handle); } }