QuoteIdMask.php 503 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Quote\Model\ResourceModel\Quote;
  7. use Magento\Framework\Model\ResourceModel\Db\AbstractDb;
  8. /**
  9. * QuoteIdMask Resource model
  10. * @codeCoverageIgnore
  11. */
  12. class QuoteIdMask extends AbstractDb
  13. {
  14. /**
  15. * Main table and field initialization
  16. *
  17. * @return void
  18. */
  19. protected function _construct()
  20. {
  21. $this->_init('quote_id_mask', 'entity_id');
  22. }
  23. }