![]() 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/Framework/App/PageCache/Cache/ |
<?php namespace Magento\Framework\App\PageCache\Cache; /** * Interceptor class for @see \Magento\Framework\App\PageCache\Cache */ class Interceptor extends \Magento\Framework\App\PageCache\Cache implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Framework\App\Cache\Frontend\Pool $frontendPool, $cacheIdentifier = null) { $this->___init(); parent::__construct($frontendPool, $cacheIdentifier); } /** * {@inheritdoc} */ public function getFrontend() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getFrontend'); return $pluginInfo ? $this->___callPlugins('getFrontend', func_get_args(), $pluginInfo) : parent::getFrontend(); } /** * {@inheritdoc} */ public function load($identifier) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'load'); return $pluginInfo ? $this->___callPlugins('load', func_get_args(), $pluginInfo) : parent::load($identifier); } /** * {@inheritdoc} */ public function save($data, $identifier, $tags = [], $lifeTime = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'save'); return $pluginInfo ? $this->___callPlugins('save', func_get_args(), $pluginInfo) : parent::save($data, $identifier, $tags, $lifeTime); } /** * {@inheritdoc} */ public function remove($identifier) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'remove'); return $pluginInfo ? $this->___callPlugins('remove', func_get_args(), $pluginInfo) : parent::remove($identifier); } /** * {@inheritdoc} */ public function clean($tags = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'clean'); return $pluginInfo ? $this->___callPlugins('clean', func_get_args(), $pluginInfo) : parent::clean($tags); } }