Commit 78037082 authored by Taylor Otwell's avatar Taylor Otwell

Merge pull request #11 from mikelbring/develop

Load a config file with out a key
parents 825ac35a 2b659dfa
......@@ -17,6 +17,17 @@ class Config {
*/
public static function get($key)
{
// -----------------------------------------------------
// We are are just pulling in a file, skip loading a key
// -----------------------------------------------------
if(strpos($key, '.') == 0)
{
static::load($key);
return static::$items[$key];
}
list($file, $key) = static::parse($key);
static::load($file);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment