Your IP : 216.73.217.95


Current Path : /home/rtorresani/www/vendor/magento/framework/View/Design/Theme/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/framework/View/Design/Theme/FileProviderInterface.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Framework\View\Design\Theme;

/**
 * Theme files provider
 *
 * @api
 * @since 100.0.2
 */
interface FileProviderInterface
{
    /**
     * Get items
     *
     * @param \Magento\Framework\View\Design\ThemeInterface $theme
     * @param array $filters
     * @return \Magento\Framework\View\Design\Theme\FileInterface[]
     */
    public function getItems(\Magento\Framework\View\Design\ThemeInterface $theme, array $filters = []);
}