Collection.php 541 B

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