Viewing File: /home/maglabs/it/dev/tests/api-functional/_files/Magento/TestModuleMSC/Model/ResourceModel/Item.php
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\TestModuleMSC\Model\ResourceModel;
/**
* Sample resource model
*/
class Item extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb
{
/**
* Initialize connection and define main table
*
* @return void
*/
protected function _construct()
{
$this->_init('dummy_item', 'dummy_item_id');
}
}
Back to Directory
File Manager