Skip to content
Snippets Groups Projects
Commit fab5817f authored by Arthur Schiwon's avatar Arthur Schiwon
Browse files

documentation for the Connection constructor

parent 0784bcb8
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment