<?php
namespace Magento\PageCache\Model\App\FrontController\BuiltinPlugin;

/**
 * Interceptor class for @see \Magento\PageCache\Model\App\FrontController\BuiltinPlugin
 */
class Interceptor extends \Magento\PageCache\Model\App\FrontController\BuiltinPlugin implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Magento\PageCache\Model\Config $config, \Magento\Framework\App\PageCache\Version $version, \Magento\Framework\App\PageCache\Kernel $kernel, \Magento\Framework\App\State $state)
    {
        $this->___init();
        parent::__construct($config, $version, $kernel, $state);
    }

    /**
     * {@inheritdoc}
     */
    public function aroundDispatch(\Magento\Framework\App\FrontControllerInterface $subject, \Closure $proceed, \Magento\Framework\App\RequestInterface $request)
    {
        $pluginInfo = $this->pluginList->getNext($this->subjectType, 'aroundDispatch');
        return $pluginInfo ? $this->___callPlugins('aroundDispatch', func_get_args(), $pluginInfo) : parent::aroundDispatch($subject, $proceed, $request);
    }
}
