<?php
namespace Amasty\Promo\Controller\Adminhtml\Product\Add;

/**
 * Interceptor class for @see \Amasty\Promo\Controller\Adminhtml\Product\Add
 */
class Interceptor extends \Amasty\Promo\Controller\Adminhtml\Product\Add implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Magento\Backend\App\Action\Context $context, \Amasty\Promo\Helper\Cart $promoCartHelper, ?\Magento\Catalog\Api\ProductRepositoryInterface $productRepository, \Magento\Backend\Model\Session\Quote $backendQuote, \Magento\Quote\Model\QuoteRepository $quoteRepository, \Psr\Log\LoggerInterface $logger, \Amasty\Promo\Model\PromoItemRepository $promoItemRepository, array $requestOptions = [], ?\Amasty\Promo\Model\ProductStorage $productStorage = null)
    {
        $this->___init();
        parent::__construct($context, $promoCartHelper, $productRepository, $backendQuote, $quoteRepository, $logger, $promoItemRepository, $requestOptions, $productStorage);
    }

    /**
     * {@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);
    }
}
