magento2-docker/generated/code/Magento/Checkout/Model/GuestShippingInformationMan.../Interceptor.php

26 lines
1.1 KiB
PHP
Executable File

<?php
namespace Magento\Checkout\Model\GuestShippingInformationManagement;
/**
* Interceptor class for @see \Magento\Checkout\Model\GuestShippingInformationManagement
*/
class Interceptor extends \Magento\Checkout\Model\GuestShippingInformationManagement implements \Magento\Framework\Interception\InterceptorInterface
{
use \Magento\Framework\Interception\Interceptor;
public function __construct(\Magento\Quote\Model\QuoteIdMaskFactory $quoteIdMaskFactory, \Magento\Checkout\Api\ShippingInformationManagementInterface $shippingInformationManagement)
{
$this->___init();
parent::__construct($quoteIdMaskFactory, $shippingInformationManagement);
}
/**
* {@inheritdoc}
*/
public function saveAddressInformation($cartId, \Magento\Checkout\Api\Data\ShippingInformationInterface $addressInformation)
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'saveAddressInformation');
return $pluginInfo ? $this->___callPlugins('saveAddressInformation', func_get_args(), $pluginInfo) : parent::saveAddressInformation($cartId, $addressInformation);
}
}