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

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

    public function __construct(\Magento\Backend\Block\Template\Context $context, \Magento\Sales\Model\OrderFactory $orderFactory, \Mageplaza\EditOrder\Model\LogsFactory $logsFactory, \Magento\Customer\Api\GroupRepositoryInterface $groupRepository, \Magento\Customer\Model\Address\Config $addressConfig, \Magento\Payment\Helper\Data $paymentData, \Magento\Quote\Model\QuoteFactory $quoteFactory, \Magento\Framework\Pricing\Helper\Data $priceHelper, \Magento\User\Model\UserFactory $userFactory, \Magento\Catalog\Api\ProductRepositoryInterface $productRepository, \Magento\Framework\Pricing\PriceCurrencyInterface $priceCurrency, \Magento\Sales\Model\ResourceModel\Order\Item\CollectionFactory $itemCollectionFactory, \Magento\Eav\Model\Config $eavConfig, array $data = [])
    {
        $this->___init();
        parent::__construct($context, $orderFactory, $logsFactory, $groupRepository, $addressConfig, $paymentData, $quoteFactory, $priceHelper, $userFactory, $productRepository, $priceCurrency, $itemCollectionFactory, $eavConfig, $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();
    }
}
