12345678910111213141516171819202122 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Indexer\Model\ResourceModel\Indexer\State;
- class Collection extends \Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection
- {
- /**
- * Collection initialization
- *
- * @return void
- */
- protected function _construct()
- {
- $this->_init(
- \Magento\Indexer\Model\Indexer\State::class,
- \Magento\Indexer\Model\ResourceModel\Indexer\State::class
- );
- }
- }
|