CaseEntity.php 436 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Signifyd\Model\ResourceModel;
  7. use Magento\Framework\Model\ResourceModel\Db\AbstractDb;
  8. /**
  9. * Implementation of case resource model
  10. */
  11. class CaseEntity extends AbstractDb
  12. {
  13. /**
  14. * @inheritdoc
  15. */
  16. protected function _construct()
  17. {
  18. $this->_init('signifyd_case', 'entity_id');
  19. }
  20. }