Your IP : 216.73.216.220


Current Path : /var/www/html/generated/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Save/
Upload File :
Current File : /var/www/html/generated/code/Magento/Sales/Controller/Adminhtml/Order/Invoice/Save/Interceptor.php

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

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

    public function __construct(\Magento\Backend\App\Action\Context $context, \Magento\Framework\Registry $registry, \Magento\Sales\Model\Order\Email\Sender\InvoiceSender $invoiceSender, \Magento\Sales\Model\Order\Email\Sender\ShipmentSender $shipmentSender, \Magento\Sales\Model\Order\ShipmentFactory $shipmentFactory, \Magento\Sales\Model\Service\InvoiceService $invoiceService, ?\Magento\Sales\Helper\Data $salesData = null)
    {
        $this->___init();
        parent::__construct($context, $registry, $invoiceSender, $shipmentSender, $shipmentFactory, $invoiceService, $salesData);
    }

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