Crunz\Configuration\Configuration::parse PHP Method

parse() protected method

Load configuration files and parse them
protected parse ( $filename ) : array
return array
    protected function parse($filename)
    {
        $conf = [];
        $conf[] = Yaml::parse(file_get_contents($filename));
        return $conf;
    }