<?php
namespace Amasty\ElasticSearch\Controller\Adminhtml\RelevanceRule\Index;

/**
 * Interceptor class for @see \Amasty\ElasticSearch\Controller\Adminhtml\RelevanceRule\Index
 */
class Interceptor extends \Amasty\ElasticSearch\Controller\Adminhtml\RelevanceRule\Index implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Magento\Backend\App\Action\Context $context, \Magento\Backend\Model\View\Result\ForwardFactory $resultForwardFactory, \Amasty\ElasticSearch\Model\RelevanceRuleRepository $ruleRepository, \Amasty\ElasticSearch\Model\RelevanceRuleFactory $ruleFactory, \Magento\Framework\Registry $registry, \Magento\Framework\Stdlib\DateTime\TimezoneInterface $timezone, \Magento\Store\Model\StoreManagerInterface $storeManager)
    {
        $this->___init();
        parent::__construct($context, $resultForwardFactory, $ruleRepository, $ruleFactory, $registry, $timezone, $storeManager);
    }

    /**
     * {@inheritdoc}
     */
    public function execute()
    {
        $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);
    }
}
