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

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

    public function __construct(\Magento\Framework\App\RequestInterface $request, \Meta\BusinessExtension\Helper\FBEHelper $fbeHelper, \Magento\Framework\Controller\Result\JsonFactory $jsonFactory, \Meta\BusinessExtension\Model\System\Config $systemConfig, \Meta\BusinessExtension\Helper\GraphAPIAdapter $graphAPIAdapter)
    {
        $this->___init();
        parent::__construct($request, $fbeHelper, $jsonFactory, $systemConfig, $graphAPIAdapter);
    }

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