| Current Path : /home/rtorresani/www/vendor/magento/module-sales/Api/ |
| 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);
}