Collection.php 674 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Downloadable\Model\ResourceModel\Link\Purchased\Item;
  7. /**
  8. * Downloadable links purchased items resource collection
  9. *
  10. * @api
  11. * @since 100.0.2
  12. */
  13. class Collection extends \Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection
  14. {
  15. /**
  16. * Init resource model
  17. *
  18. * @return void
  19. */
  20. protected function _construct()
  21. {
  22. $this->_init(
  23. \Magento\Downloadable\Model\Link\Purchased\Item::class,
  24. \Magento\Downloadable\Model\ResourceModel\Link\Purchased\Item::class
  25. );
  26. }
  27. }