diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2013-01-10 23:34:24 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2013-01-10 23:34:24 +0100 |
commit | fab5817f67a9e9dde245d522838fee3b928fcbd8 (patch) | |
tree | f32bc1bb01eb6b7ab7d8781cb2e59cd7451e4fa6 /apps | |
parent | 0784bcb8d74214448e3908e8c05a8c6be38ef457 (diff) | |
download | nextcloud-server-fab5817f67a9e9dde245d522838fee3b928fcbd8.tar.gz nextcloud-server-fab5817f67a9e9dde245d522838fee3b928fcbd8.zip |
documentation for the Connection constructor
Diffstat (limited to 'apps')
-rw-r--r-- | apps/user_ldap/lib/connection.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/user_ldap/lib/connection.php b/apps/user_ldap/lib/connection.php index 21b2d7560c9..803ac34f597 100644 --- a/apps/user_ldap/lib/connection.php +++ b/apps/user_ldap/lib/connection.php @@ -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; |