diff options
author | provokateurin <kate@provokateurin.de> | 2024-10-18 12:40:17 +0200 |
---|---|---|
committer | provokateurin <kate@provokateurin.de> | 2024-10-21 12:37:59 +0200 |
commit | e8426996f59ab6dbf0c94adee8f410cbd572b11a (patch) | |
tree | 70f296c1177c9632865688a54f7f68e5524ccc67 /lib | |
parent | 381077028adf388a7081cf42026570c6be47b198 (diff) | |
download | nextcloud-server-refactor/apps/constructor-property-promotion.tar.gz nextcloud-server-refactor/apps/constructor-property-promotion.zip |
fix(psalm): Fix some newly detected issuesrefactor/apps/constructor-property-promotion
Signed-off-by: provokateurin <kate@provokateurin.de>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/public/LDAP/ILDAPProvider.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/LDAP/ILDAPProvider.php b/lib/public/LDAP/ILDAPProvider.php index 584b554aa81..22f4b872adc 100644 --- a/lib/public/LDAP/ILDAPProvider.php +++ b/lib/public/LDAP/ILDAPProvider.php @@ -46,8 +46,8 @@ interface ILDAPProvider { /** * Sanitize a DN received from the LDAP server. - * @param array $dn the DN in question - * @return array the sanitized DN + * @param array|string $dn the DN in question + * @return array|string the sanitized DN * @since 11.0.0 */ public function sanitizeDN($dn); |