<?php
namespace Mageplaza\EditOrder\Block\Adminhtml\Order\Edit\PaymentMethod;

/**
 * Interceptor class for @see \Mageplaza\EditOrder\Block\Adminhtml\Order\Edit\PaymentMethod
 */
class Interceptor extends \Mageplaza\EditOrder\Block\Adminhtml\Order\Edit\PaymentMethod implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Magento\Backend\Block\Template\Context $context, \Magento\Backend\Model\Session\Quote $sessionQuote, \Magento\Sales\Model\AdminOrder\Create $orderCreate, \Magento\Framework\Pricing\PriceCurrencyInterface $priceCurrency, \Magento\Framework\Json\EncoderInterface $jsonEncoder, \Magento\Customer\Model\Metadata\FormFactory $customerFormFactory, \Magento\Customer\Api\CustomerRepositoryInterface $customerRepository, \Magento\Framework\Locale\CurrencyInterface $localeCurrency, \Magento\Customer\Model\Address\Mapper $addressMapper, \Magento\Framework\Message\ManagerInterface $messageManager, \Magento\Sales\Block\Adminhtml\Order\View\History $orderHistory, \Magento\Customer\Model\ResourceModel\Customer\CollectionFactory $customerFactory, \Mageplaza\EditOrder\Helper\Data $helperData, \Magento\Sales\Model\OrderFactory $orderFactory, \Magento\Quote\Model\QuoteFactory $quoteFactory, \Magento\Framework\Stdlib\DateTime\TimezoneInterface $timezone, array $data = [])
    {
        $this->___init();
        parent::__construct($context, $sessionQuote, $orderCreate, $priceCurrency, $jsonEncoder, $customerFormFactory, $customerRepository, $localeCurrency, $addressMapper, $messageManager, $orderHistory, $customerFactory, $helperData, $orderFactory, $quoteFactory, $timezone, $data);
    }

    /**
     * {@inheritdoc}
     */
    public function fetchView($fileName)
    {
        $pluginInfo = $this->pluginList->getNext($this->subjectType, 'fetchView');
        return $pluginInfo ? $this->___callPlugins('fetchView', func_get_args(), $pluginInfo) : parent::fetchView($fileName);
    }

    /**
     * {@inheritdoc}
     */
    public function toHtml()
    {
        $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toHtml');
        return $pluginInfo ? $this->___callPlugins('toHtml', func_get_args(), $pluginInfo) : parent::toHtml();
    }
}
