Collection.php 714 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * @copyright Vertex. All rights reserved. https://www.vertexinc.com/
  4. * @author Mediotype https://www.mediotype.com/
  5. */
  6. namespace Vertex\Tax\Model\ResourceModel\LogEntry;
  7. use Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection;
  8. use Vertex\Tax\Model\Data\LogEntry as Model;
  9. use Vertex\Tax\Model\ResourceModel\LogEntry as ResourceModel;
  10. /**
  11. * Collection of Log Entries
  12. */
  13. class Collection extends AbstractCollection
  14. {
  15. /**
  16. * {@inheritdoc}
  17. *
  18. * MEQP2 Warning: Protected method. Needed to override AbstractDb's _construct
  19. */
  20. protected function _construct()
  21. {
  22. $this->_init(Model::class, ResourceModel::class);
  23. }
  24. }