Collection.php 598 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Theme\Model\ResourceModel\Theme\Data;
  7. /**
  8. * Theme data collection
  9. */
  10. class Collection extends \Magento\Theme\Model\ResourceModel\Theme\Collection implements
  11. \Magento\Framework\View\Design\Theme\Label\ListInterface,
  12. \Magento\Framework\View\Design\Theme\ListInterface
  13. {
  14. /**
  15. * @inheritdoc
  16. */
  17. protected function _construct()
  18. {
  19. $this->_init(\Magento\Theme\Model\Theme\Data::class, \Magento\Theme\Model\ResourceModel\Theme::class);
  20. }
  21. }