<?php
namespace Mktr\Tracker\Controller\Api\Orders;

/**
 * Interceptor class for @see \Mktr\Tracker\Controller\Api\Orders
 */
class Interceptor extends \Mktr\Tracker\Controller\Api\Orders implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Mktr\Tracker\Helper\Data $helper)
    {
        $this->___init();
        parent::__construct($helper);
    }

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