<?php
namespace Meta\Conversion\Controller\Pixel\Tracker;

/**
 * Interceptor class for @see \Meta\Conversion\Controller\Pixel\Tracker
 */
class Interceptor extends \Meta\Conversion\Controller\Pixel\Tracker 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, \Magento\Framework\MessageQueue\PublisherInterface $publisher, \Magento\Framework\Serialize\Serializer\Json $jsonSerializer, array $pixelEvents = [])
    {
        $this->___init();
        parent::__construct($request, $fbeHelper, $jsonFactory, $publisher, $jsonSerializer, $pixelEvents);
    }

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