123456789101112131415161718192021 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Theme\Model\Theme\Data;
- use Magento\Framework\View\Design\Theme\ListInterface;
- /**
- * Theme filesystem data collection
- */
- class Collection extends \Magento\Theme\Model\Theme\Collection implements ListInterface
- {
- /**
- * Model of collection item
- *
- * @var string
- */
- protected $_itemObjectClass = \Magento\Theme\Model\Theme\Data::class;
- }
|