25 lines
790 B
PHP
Executable File
25 lines
790 B
PHP
Executable File
<?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);
|
|
}
|
|
}
|