| Current Path : /home/azimutno/www/templates/jdirect_aviato/warp/src/Warp/Config/Loader/ |
| Current File : /home/azimutno/www/templates/jdirect_aviato/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);
}