<?php
namespace Anowave\Ec\Observer\Refund;

/**
 * Interceptor class for @see \Anowave\Ec\Observer\Refund
 */
class Interceptor extends \Anowave\Ec\Observer\Refund implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Magento\Framework\View\Element\BlockFactory $blockFactory, \Anowave\Ec\Helper\Data $helper, \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Framework\Message\ManagerInterface $messageManager, \Magento\Catalog\Model\ProductFactory $productFactory, \Magento\Catalog\Model\CategoryRepository $categoryRepository, \Magento\Catalog\Model\ResourceModel\Eav\AttributeFactory $attribute, \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig)
    {
        $this->___init();
        parent::__construct($blockFactory, $helper, $storeManager, $messageManager, $productFactory, $categoryRepository, $attribute, $scopeConfig);
    }

    /**
     * {@inheritdoc}
     */
    public function execute(\Magento\Framework\Event\Observer $observer)
    {
        $pluginInfo = $this->pluginList->getNext($this->subjectType, 'execute');
        return $pluginInfo ? $this->___callPlugins('execute', func_get_args(), $pluginInfo) : parent::execute($observer);
    }
}
