Payment.php 665 B

12345678910111213141516171819202122232425262728293031
  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 payment resource model
  10. */
  11. class Payment extends AbstractDb
  12. {
  13. /**
  14. * Serializable field: additional_information
  15. *
  16. * @var array
  17. */
  18. protected $_serializableFields = ['additional_information' => [null, []]];
  19. /**
  20. * Main table and field initialization
  21. *
  22. * @return void
  23. */
  24. protected function _construct()
  25. {
  26. $this->_init('quote_payment', 'payment_id');
  27. }
  28. }