Collection.php 488 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Theme\Model\Theme\Data;
  7. use Magento\Framework\View\Design\Theme\ListInterface;
  8. /**
  9. * Theme filesystem data collection
  10. */
  11. class Collection extends \Magento\Theme\Model\Theme\Collection implements ListInterface
  12. {
  13. /**
  14. * Model of collection item
  15. *
  16. * @var string
  17. */
  18. protected $_itemObjectClass = \Magento\Theme\Model\Theme\Data::class;
  19. }