quote.php 315 B

123456789
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. $quote = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create(\Magento\Quote\Model\Quote::class);
  7. $quote->setData(['store_id' => 1, 'is_active' => 0, 'is_multi_shipping' => 0]);
  8. $quote->save();