MessageCollection.php 540 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\MysqlMq\Model\ResourceModel;
  7. /**
  8. * Message collection.
  9. */
  10. class MessageCollection extends \Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection
  11. {
  12. /**
  13. * Resource collection initialization.
  14. *
  15. * @return void
  16. */
  17. protected function _construct()
  18. {
  19. $this->_init(\Magento\MysqlMq\Model\Message::class, \Magento\MysqlMq\Model\ResourceModel\Message::class);
  20. }
  21. }