DbConnection: Introduce method getConfig()

refs #2508
This commit is contained in:
Johannes Meyer 2018-04-27 15:30:04 +02:00
parent ca7e886b82
commit c3b19996f8
1 changed files with 10 additions and 0 deletions

View File

@ -98,6 +98,16 @@ class DbConnection implements Selectable, Extensible, Updatable, Reducible, Insp
return $query->getSelectQuery()->query();
}
/**
* Get the connection configuration
*
* @return ConfigObject
*/
public function getConfig()
{
return $this->config;
}
/**
* Getter for database type
*