Item.php 462 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\TestModule4\Model\ResourceModel;
  7. /**
  8. * Sample resource model
  9. */
  10. class Item extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb
  11. {
  12. /**
  13. * Initialize connection and define main table
  14. *
  15. * @return void
  16. */
  17. protected function _construct()
  18. {
  19. $this->_init('dummy_item', 'dummy_item_id');
  20. }
  21. }