diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2014-05-11 15:17:27 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2014-05-11 15:17:27 +0200 |
commit | fc8be5abc3e51c99b9995b9bbd0f08d00470112f (patch) | |
tree | 050dc1237a3f626116ac3e07ee0ba37cdb85fb57 /apps/user_ldap/lib/ldaputility.php | |
parent | b6d76e9985105a245daf63f60b47e82df283019d (diff) | |
download | nextcloud-server-fc8be5abc3e51c99b9995b9bbd0f08d00470112f.tar.gz nextcloud-server-fc8be5abc3e51c99b9995b9bbd0f08d00470112f.zip |
Use proper PHPDoc and variable names in the LDAP lib
My IDE was so sad about this that it marked the whole file in red and yellow and forced me to fix this.
Diffstat (limited to 'apps/user_ldap/lib/ldaputility.php')
-rw-r--r-- | apps/user_ldap/lib/ldaputility.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/ldaputility.php b/apps/user_ldap/lib/ldaputility.php index 7fffd9c88d1..0d942f3b6ae 100644 --- a/apps/user_ldap/lib/ldaputility.php +++ b/apps/user_ldap/lib/ldaputility.php @@ -28,7 +28,7 @@ abstract class LDAPUtility { /** * @brief constructor, make sure the subclasses call this one! - * @param $ldapWrapper an instance of an ILDAPWrapper + * @param ILDAPWrapper $ldapWrapper an instance of an ILDAPWrapper */ public function __construct(ILDAPWrapper $ldapWrapper) { $this->ldap = $ldapWrapper; |