Message.php 418 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\MysqlMq\Model;
  7. /**
  8. * Message model
  9. *
  10. * @api
  11. * @since 100.0.2
  12. */
  13. class Message extends \Magento\Framework\Model\AbstractModel
  14. {
  15. /**
  16. * {@inheritdoc}
  17. */
  18. protected function _construct()
  19. {
  20. $this->_init(\Magento\MysqlMq\Model\ResourceModel\Message::class);
  21. }
  22. }