<?php
namespace Amasty\PageSpeedOptimizer\Controller\Bundle\Modules;

/**
 * Interceptor class for @see \Amasty\PageSpeedOptimizer\Controller\Bundle\Modules
 */
class Interceptor extends \Amasty\PageSpeedOptimizer\Controller\Bundle\Modules implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Amasty\PageSpeedOptimizer\Model\Bundle\BundleFactory $bundleFactory, \Amasty\PageSpeedOptimizer\Model\Bundle\ResourceModel\Bundle $bundleResource, \Magento\Theme\Model\Theme\Resolver $themeResolver, \Magento\Framework\Filesystem\Io\File $file, \Magento\Framework\Locale\Resolver $localeResolver, \Magento\Framework\App\Action\Context $context)
    {
        $this->___init();
        parent::__construct($bundleFactory, $bundleResource, $themeResolver, $file, $localeResolver, $context);
    }

    /**
     * {@inheritdoc}
     */
    public function execute(): \Magento\Framework\Controller\Result\Raw
    {
        $pluginInfo = $this->pluginList->getNext($this->subjectType, 'execute');
        return $pluginInfo ? $this->___callPlugins('execute', func_get_args(), $pluginInfo) : parent::execute();
    }

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