AssetManager\Module::getConfig PHP 메소드

getConfig() 공개 메소드

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

Usage Example

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