Sitemap\Module::getConfig PHP Method

getConfig() public method

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

Usage Example

Example #1
0
 /**
  * Test
  *
  * @return void
  */
 public function testGetConfig()
 {
     $this->assertInternalType('array', $this->object->getConfig());
 }