Your IP : 216.73.216.220


Current Path : /var/www/html/vendor/magento/module-quote/Model/
Upload File :
Current File : /var/www/html/vendor/magento/module-quote/Model/AddressAdditionalDataProcessor.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Quote\Model;

use Magento\Quote\Api\Data\AddressAdditionalDataInterface;
use Magento\Framework\Model\AbstractExtensibleModel;

class AddressAdditionalDataProcessor
{
    /**
     * Process address additional data
     *
     * @param AddressAdditionalDataInterface $additionalData
     * @return void
     * @SuppressWarnings(PHPMD.UnusedFormalParameter)
     */
    public function process(AddressAdditionalDataInterface $additionalData)
    {
        return;
    }
}