Your IP : 216.73.216.43


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

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

/**
 * @api
 *
 * @since 100.0.2
 */
interface OrderCustomerManagementInterface
{
    /**
     * Create customer account for order
     *
     * @param int $orderId
     * @return \Magento\Customer\Api\Data\CustomerInterface
     * @throws \Magento\Framework\Exception\AlreadyExistsException
     */
    public function create($orderId);
}