Collection.php 552 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Indexer\Model\ResourceModel\Indexer\State;
  7. class Collection extends \Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection
  8. {
  9. /**
  10. * Collection initialization
  11. *
  12. * @return void
  13. */
  14. protected function _construct()
  15. {
  16. $this->_init(
  17. \Magento\Indexer\Model\Indexer\State::class,
  18. \Magento\Indexer\Model\ResourceModel\Indexer\State::class
  19. );
  20. }
  21. }