12345678910111213141516171819202122232425262728 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Downloadable\Model\ResourceModel\Link\Purchased\Item;
- /**
- * Downloadable links purchased items resource collection
- *
- * @api
- * @since 100.0.2
- */
- class Collection extends \Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection
- {
- /**
- * Init resource model
- *
- * @return void
- */
- protected function _construct()
- {
- $this->_init(
- \Magento\Downloadable\Model\Link\Purchased\Item::class,
- \Magento\Downloadable\Model\ResourceModel\Link\Purchased\Item::class
- );
- }
- }
|