| Current Path : /home/rtorresani/www/vendor/magento/module-inventory-sales-api/Test/_files/ |
| Current File : //home/rtorresani/www/vendor/magento/module-inventory-sales-api/Test/_files/quote_rollback.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
use Magento\TestFramework\Helper\Bootstrap;
/** @var \Magento\Framework\Registry $registry */
$registry = Bootstrap::getObjectManager()->get(\Magento\Framework\Registry::class);
$registry->unregister('isSecureArea');
$registry->register('isSecureArea', true);
/** @var $order \Magento\Quote\Model\Quote */
$quoteCollection = Bootstrap::getObjectManager()->create(\Magento\Quote\Model\ResourceModel\Quote\Collection::class);
foreach ($quoteCollection as $quote) {
$quote->delete();
}
$registry->unregister('isSecureArea');
$registry->register('isSecureArea', false);