| Current Path : /var/www/html/vendor/magento/module-quote/Model/ |
| Current File : /var/www/html/vendor/magento/module-quote/Model/MaskedQuoteIdToQuoteIdInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Quote\Model;
use Magento\Framework\Exception\NoSuchEntityException;
/**
* Converts masked quote id to the quote id (entity id)
* @api
* @since 101.1.0
*/
interface MaskedQuoteIdToQuoteIdInterface
{
/**
* @param string $maskedQuoteId
* @return int
* @throws NoSuchEntityException
* @since 101.1.0
*/
public function execute(string $maskedQuoteId): int;
}