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