b0y-101 Mini Shell


Current Path : E:/www/instructor/test01/templates/simple_v1/warp/src/Warp/Config/Loader/
File Upload :
Current File : E:/www/instructor/test01/templates/simple_v1/warp/src/Warp/Config/Loader/LoaderInterface.php

<?php
/**
* @package   Warp Theme Framework
* @author    YOOtheme http://www.yootheme.com
* @copyright Copyright (C) YOOtheme GmbH
* @license   http://www.gnu.org/licenses/gpl.html GNU/GPL
*/

namespace Warp\Config\Loader;

interface LoaderInterface
{
    /**
     * Load the given configuration file.
     *
     * @param string $filename
     * 
     * @return array
     */
    public function load($filename);
 
    /**
     * Determine if the configuration file is supported.
     *
     * @param string $filename
     * 
     * @return bool
     */
    public function supports($filename);
}

Copyright © 2019 by b0y-101