Config: Add method getConfigObject to access the internal ConfigObject

This commit is contained in:
Johannes Meyer 2015-05-06 08:07:42 +02:00
parent e228404bf4
commit f1f1710f47
1 changed files with 10 additions and 0 deletions

View File

@ -87,6 +87,16 @@ class Config implements Countable, Iterator, Selectable
return $this; return $this;
} }
/**
* Return the internal ConfigObject
*
* @return ConfigObject
*/
public function getConfigObject()
{
return $this->config;
}
/** /**
* Provide a query for the internal config object * Provide a query for the internal config object
* *