<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Downloadable\Model\ResourceModel\Link\Purchased; /** * Downloadable Product link purchased items resource model * * @author Magento Core Team <core@magentocommerce.com> */ class Item extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb { /** * Magento class constructor * * @return void */ protected function _construct() { $this->_init('downloadable_link_purchased_item', 'item_id'); } }