Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2019-06-19 14:40:07 +0300
committerArthur Schiwon <blizzz@arthur-schiwon.de>2019-06-19 14:40:07 +0300
commit0b34085f244b55164de855ac28350a53a0fa534a (patch)
tree3ce6203193fc19533fd8ac01e5c727c2344fceef /apps/user_ldap/lib/ILDAPUserPlugin.php
parent8a7b0a68a5cd83571672ada16fbb55103a90cc03 (diff)
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/ILDAPUserPlugin.php')
-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);