Collection.php 589 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Signifyd\Model\ResourceModel\CaseEntity;
  7. use Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection;
  8. use Magento\Signifyd\Model\CaseEntity;
  9. use Magento\Signifyd\Model\ResourceModel\CaseEntity as CaseResourceModel;
  10. /**
  11. * Collection of case entities
  12. */
  13. class Collection extends AbstractCollection
  14. {
  15. /**
  16. * @inheritdoc
  17. */
  18. public function _construct()
  19. {
  20. $this->_init(CaseEntity::class, CaseResourceModel::class);
  21. }
  22. }