cascade\Cascade::getConfig PHP Method

getConfig() public static method

Return the config options
public static getConfig ( ) : array
return array Array with configuration options
    public static function getConfig()
    {
        return self::$config;
    }

Usage Example

 public function testFileConfig()
 {
     $options = Fixtures::getPhpArrayConfig();
     Cascade::fileConfig($options);
     $this->assertInstanceOf('Cascade\\Config', Cascade::getConfig());
 }