![]() 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/PageCache/Model/Config/ |
<?php namespace Magento\PageCache\Model\Config; /** * Interceptor class for @see \Magento\PageCache\Model\Config */ class Interceptor extends \Magento\PageCache\Model\Config implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Framework\Filesystem\Directory\ReadFactory $readFactory, \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig, \Magento\Framework\App\Cache\StateInterface $cacheState, \Magento\Framework\Module\Dir\Reader $reader, \Magento\PageCache\Model\Varnish\VclGeneratorFactory $vclGeneratorFactory, ?\Magento\Framework\Serialize\Serializer\Json $serializer = null) { $this->___init(); parent::__construct($readFactory, $scopeConfig, $cacheState, $reader, $vclGeneratorFactory, $serializer); } /** * {@inheritdoc} */ public function getType() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getType'); return $pluginInfo ? $this->___callPlugins('getType', func_get_args(), $pluginInfo) : parent::getType(); } /** * {@inheritdoc} */ public function getTtl() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getTtl'); return $pluginInfo ? $this->___callPlugins('getTtl', func_get_args(), $pluginInfo) : parent::getTtl(); } /** * {@inheritdoc} */ public function getVclFile($vclTemplatePath) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getVclFile'); return $pluginInfo ? $this->___callPlugins('getVclFile', func_get_args(), $pluginInfo) : parent::getVclFile($vclTemplatePath); } /** * {@inheritdoc} */ public function isEnabled() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isEnabled'); return $pluginInfo ? $this->___callPlugins('isEnabled', func_get_args(), $pluginInfo) : parent::isEnabled(); } }