summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/lib
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2019-06-19 13:40:07 +0200
committerArthur Schiwon <blizzz@arthur-schiwon.de>2019-06-19 13:40:07 +0200
commit0b34085f244b55164de855ac28350a53a0fa534a (patch)
tree3ce6203193fc19533fd8ac01e5c727c2344fceef /apps/user_ldap/lib
parent8a7b0a68a5cd83571672ada16fbb55103a90cc03 (diff)
downloadnextcloud-server-0b34085f244b55164de855ac28350a53a0fa534a.tar.gz
nextcloud-server-0b34085f244b55164de855ac28350a53a0fa534a.zip
fixes return type in php doc
* the backend already expects and works with the string Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps/user_ldap/lib')
-rw-r--r--apps/user_ldap/lib/ILDAPUserPlugin.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/ILDAPUserPlugin.php b/apps/user_ldap/lib/ILDAPUserPlugin.php
index 9250830fc82..da896345da4 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);