documentation for the Connection constructor

This commit is contained in:
Arthur Schiwon 2013-01-10 23:34:24 +01:00
parent 0784bcb8d7
commit fab5817f67
1 changed files with 5 additions and 0 deletions

View File

@ -60,6 +60,11 @@ class Connection {
'hasPagedResultSupport' => false,
);
/**
* @brief Constructor
* @param $configPrefix a string with the prefix for the configkey column (appconfig table)
* @param $configID a string with the value for the appid column (appconfig table) or null for on-the-fly connections
*/
public function __construct($configPrefix = '', $configID = 'user_ldap') {
$this->configPrefix = $configPrefix;
$this->configID = $configID;