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/OrderCustomerDelegateInterface.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\Sales\Api;

use Magento\Framework\Controller\Result\Redirect;

/**
 * Delegate related to orders customers operations to Customer module.
 * @api
 */
interface OrderCustomerDelegateInterface
{
    /**
     * Redirect to Customer module new-account page to finish creating customer based on order data.
     *
     * @param int $orderId
     *
     * @return Redirect
     */
    public function delegateNew(int $orderId): Redirect;
}