| Current Path : /var/www/html/generated/code/Magento/Quote/Model/AddressAdditionalDataProcessor/ |
| 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);
}
}