Your IP : 216.73.216.220


Current Path : /var/www/html/generated/code/Vertex/Utility/SoapClientFactory/
Upload File :
Current File : /var/www/html/generated/code/Vertex/Utility/SoapClientFactory/Interceptor.php

<?php
namespace Vertex\Utility\SoapClientFactory;

/**
 * Interceptor class for @see \Vertex\Utility\SoapClientFactory
 */
class Interceptor extends \Vertex\Utility\SoapClientFactory implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct()
    {
        $this->___init();
    }

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

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