MessageStatusCollection.php 628 B

12345678910111213141516171819202122232425262728
  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 Status collection.
  9. *
  10. * @api
  11. * @since 100.0.2
  12. */
  13. class MessageStatusCollection extends \Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection
  14. {
  15. /**
  16. * Resource collection initialization.
  17. *
  18. * @return void
  19. */
  20. protected function _construct()
  21. {
  22. $this->_init(
  23. \Magento\MysqlMq\Model\MessageStatus::class,
  24. \Magento\MysqlMq\Model\ResourceModel\MessageStatus::class
  25. );
  26. }
  27. }