diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2017-07-05 22:06:36 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2017-07-21 14:55:12 +0200 |
commit | 25439919f83d1e1db385649943677597f7ed9a14 (patch) | |
tree | 1557fa91b4441e0ba955b0e43896054605148530 /apps/user_ldap/lib/ILDAPWrapper.php | |
parent | 9b2f171cbd9423222757584135a9fb17f051cf12 (diff) | |
download | nextcloud-server-25439919f83d1e1db385649943677597f7ed9a14.tar.gz nextcloud-server-25439919f83d1e1db385649943677597f7ed9a14.zip |
fix phpdoc return types (no code change)
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps/user_ldap/lib/ILDAPWrapper.php')
-rw-r--r-- | apps/user_ldap/lib/ILDAPWrapper.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/user_ldap/lib/ILDAPWrapper.php b/apps/user_ldap/lib/ILDAPWrapper.php index 4034d0baea4..71dd60c3725 100644 --- a/apps/user_ldap/lib/ILDAPWrapper.php +++ b/apps/user_ldap/lib/ILDAPWrapper.php @@ -82,14 +82,14 @@ interface ILDAPWrapper { /** * Return the LDAP error number of the last LDAP command * @param resource $link LDAP link resource - * @return string error message as string + * @return int error code */ public function errno($link); /** * Return the LDAP error message of the last LDAP command * @param resource $link LDAP link resource - * @return int error code as integer + * @return string error message */ public function error($link); |