Application\Module::getConfig PHP 메소드

getConfig() 공개 메소드

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

Usage Example

예제 #1
0
 public function testConfigIsSerializable()
 {
     $module = new Module();
     $this->assertSame($module->getConfig(), unserialize(serialize($module->getConfig())));
 }
All Usage Examples Of Application\Module::getConfig