Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-customer/Api/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-customer/Api/CustomerNameGenerationInterface.php

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

namespace Magento\Customer\Api;

use Magento\Customer\Api\Data\CustomerInterface;

/**
 * Interface CustomerNameGenerationInterface
 *
 * @api
 * @since 100.1.0
 */
interface CustomerNameGenerationInterface
{
    /**
     * Concatenate all customer name parts into full customer name.
     *
     * @param CustomerInterface $customerData
     * @return string
     * @since 100.1.0
     */
    public function getCustomerName(CustomerInterface $customerData);
}