AssetManager\Module::getConfig PHP Method

getConfig() public method

{@inheritDoc}
public getConfig ( )
    public function getConfig()
    {
        return include __DIR__ . '/../../config/module.config.php';
    }

Usage Example

Beispiel #1
0
 public function testGetConfig()
 {
     $module = new Module();
     // just testing ZF specification requirements
     $this->assertInternalType('array', $module->getConfig());
 }