From 0b34085f244b55164de855ac28350a53a0fa534a Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 19 Jun 2019 13:40:07 +0200 Subject: [PATCH] fixes return type in php doc * the backend already expects and works with the string Signed-off-by: Arthur Schiwon --- apps/user_ldap/lib/ILDAPUserPlugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_ldap/lib/ILDAPUserPlugin.php b/apps/user_ldap/lib/ILDAPUserPlugin.php index 9250830fc8..da896345da 100644 --- a/apps/user_ldap/lib/ILDAPUserPlugin.php +++ b/apps/user_ldap/lib/ILDAPUserPlugin.php @@ -40,7 +40,7 @@ interface ILDAPUserPlugin { * * @param string $uid The UID of the user to create * @param string $password The password of the new user - * @return bool + * @return bool|string */ public function createUser($uid, $password);