Your IP : 216.73.216.220


Current Path : /var/www/html/generated/code/Magento/Quote/Model/AddressAdditionalDataProcessor/
Upload File :
Current File : /var/www/html/generated/code/Magento/Quote/Model/AddressAdditionalDataProcessor/Interceptor.php

<?php
namespace Magento\Quote\Model\AddressAdditionalDataProcessor;

/**
 * Interceptor class for @see \Magento\Quote\Model\AddressAdditionalDataProcessor
 */
class Interceptor extends \Magento\Quote\Model\AddressAdditionalDataProcessor implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

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

    /**
     * {@inheritdoc}
     */
    public function process(\Magento\Quote\Api\Data\AddressAdditionalDataInterface $additionalData)
    {
        $pluginInfo = $this->pluginList->getNext($this->subjectType, 'process');
        return $pluginInfo ? $this->___callPlugins('process', func_get_args(), $pluginInfo) : parent::process($additionalData);
    }
}