diff options
author | provokateurin <kate@provokateurin.de> | 2024-09-17 17:18:30 +0200 |
---|---|---|
committer | provokateurin <kate@provokateurin.de> | 2024-09-17 17:18:30 +0200 |
commit | c2fb7a72da05a8df976d182ead6a18dc93d6abd8 (patch) | |
tree | 2e816f5d418f02ace3da9504a7e308e452ec993a /apps/user_ldap | |
parent | f25acfb7990bf6d9233e1c3fb8713ea80d388084 (diff) | |
download | nextcloud-server-c2fb7a72da05a8df976d182ead6a18dc93d6abd8.tar.gz nextcloud-server-c2fb7a72da05a8df976d182ead6a18dc93d6abd8.zip |
fix(psalm): Fix @throws annotationsfix/psalm/throws-annotations
Signed-off-by: provokateurin <kate@provokateurin.de>
Diffstat (limited to 'apps/user_ldap')
-rw-r--r-- | apps/user_ldap/lib/LDAP.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/LDAP.php b/apps/user_ldap/lib/LDAP.php index dcf2e6f62e1..b57cae72436 100644 --- a/apps/user_ldap/lib/LDAP.php +++ b/apps/user_ldap/lib/LDAP.php @@ -369,7 +369,7 @@ class LDAP implements ILDAPWrapper { /** * Called after an ldap method is run to act on LDAP error if necessary - * @throw \Exception + * @throws \Exception */ private function postFunctionCall(string $functionName): void { if ($this->isResource($this->curArgs[0])) { |