Collection.php 699 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\AsynchronousOperations\Model\ResourceModel\Bulk;
  7. /**
  8. * Class Collection
  9. * @codeCoverageIgnore
  10. */
  11. class Collection extends \Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection
  12. {
  13. /**
  14. * Define collection item type and corresponding table
  15. *
  16. * @return void
  17. */
  18. protected function _construct()
  19. {
  20. $this->_init(
  21. \Magento\AsynchronousOperations\Model\BulkSummary::class,
  22. \Magento\AsynchronousOperations\Model\ResourceModel\Bulk::class
  23. );
  24. $this->setMainTable('magento_bulk');
  25. }
  26. }