<?php
namespace Magento\Sales\Controller\Adminhtml\Order\Invoice\AddComment;

/**
 * Interceptor class for @see \Magento\Sales\Controller\Adminhtml\Order\Invoice\AddComment
 */
class Interceptor extends \Magento\Sales\Controller\Adminhtml\Order\Invoice\AddComment implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Magento\Backend\App\Action\Context $context, \Magento\Framework\Registry $registry, \Magento\Backend\Model\View\Result\ForwardFactory $resultForwardFactory, \Magento\Sales\Model\Order\Email\Sender\InvoiceCommentSender $invoiceCommentSender, \Magento\Framework\Controller\Result\JsonFactory $resultJsonFactory, \Magento\Framework\View\Result\PageFactory $resultPageFactory, \Magento\Framework\Controller\Result\RawFactory $resultRawFactory, ?\Magento\Sales\Api\InvoiceRepositoryInterface $invoiceRepository = null, ?\Magento\Sales\Model\Order\Invoice\Comment $invoiceComment = null, ?\Magento\Sales\Model\ResourceModel\Order\Invoice\Comment $invoiceCommentResource = null)
    {
        $this->___init();
        parent::__construct($context, $registry, $resultForwardFactory, $invoiceCommentSender, $resultJsonFactory, $resultPageFactory, $resultRawFactory, $invoiceRepository, $invoiceComment, $invoiceCommentResource);
    }

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