c::load PHP Method

load() static public method

Loads an additional config file Returns the entire configuration array
static public load ( string $file ) : array
$file string The path to the config file
return array The entire config array
    static function load($file)
    {
        if (file_exists($file)) {
            require_once $file;
        }
        return c::get();
    }