<?php
namespace Meta\BusinessExtension\Controller\Adminhtml\Ajax\RepairCommercePartnerIntegration;

/**
 * Interceptor class for @see \Meta\BusinessExtension\Controller\Adminhtml\Ajax\RepairCommercePartnerIntegration
 */
class Interceptor extends \Meta\BusinessExtension\Controller\Adminhtml\Ajax\RepairCommercePartnerIntegration implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Magento\Framework\Controller\Result\JsonFactory $resultJsonFactory, \Meta\BusinessExtension\Helper\FBEHelper $fbeHelper, \Meta\BusinessExtension\Model\MBEInstalls $mbeInstalls, \Magento\Framework\App\RequestInterface $request)
    {
        $this->___init();
        parent::__construct($resultJsonFactory, $fbeHelper, $mbeInstalls, $request);
    }

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