1234567891011121314151617181920212223 |
- <?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);
- }
|