Rate.php 580 B

1234567891011121314151617181920212223242526
  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\Address;
  7. use Magento\Framework\Model\ResourceModel\Db\VersionControl\AbstractDb;
  8. /**
  9. * Quote address shipping rate resource model
  10. *
  11. * @author Magento Core Team <core@magentocommerce.com>
  12. */
  13. class Rate extends AbstractDb
  14. {
  15. /**
  16. * Main table and field initialization
  17. *
  18. * @return void
  19. */
  20. protected function _construct()
  21. {
  22. $this->_init('quote_shipping_rate', 'rate_id');
  23. }
  24. }