magento2-docker/generated/code/Magento/PageCache/Model/Config/Interceptor.php

26 lines
1.1 KiB
PHP
Executable File

<?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 isEnabled()
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'isEnabled');
return $pluginInfo ? $this->___callPlugins('isEnabled', func_get_args(), $pluginInfo) : parent::isEnabled();
}
}