Collection.php 632 B

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