diff --git a/lam/lib/modules/ldapPublicKey.inc b/lam/lib/modules/ldapPublicKey.inc
index 1cff4b4e7..dfae54195 100644
--- a/lam/lib/modules/ldapPublicKey.inc
+++ b/lam/lib/modules/ldapPublicKey.inc
@@ -8,7 +8,7 @@ use LAM\TYPES\ConfiguredType;
/*
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
- Copyright (C) 2005 - 2024 Roland Gruber
+ Copyright (C) 2005 - 2025 Roland Gruber
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -530,21 +530,7 @@ class ldapPublicKey extends baseModule {
}
/**
- * Checks if all input values are correct and returns the LDAP attributes which should be changed.
- *
Return values:
- *
messages: array of parameters to create status messages
- *
add: array of attributes to add
- *
del: array of attributes to remove
- *
mod: array of attributes to modify
- *
info: array of values with informational value (e.g. to be used later by pre/postModify actions)
- *
- * Calling this method does not require the existence of an enclosing {@link accountContainer}.
- *
- * @param string $fields input fields
- * @param array $attributes LDAP attributes
- * @param boolean $passwordChangeOnly indicates that the user is only allowed to change his password and no LDAP content is readable
- * @param array $readOnlyFields list of read-only fields
- * @return array messages and attributes (array('messages' => [], 'add' => array('mail' => array('test@test.com')), 'del' => [], 'mod' => [], 'info' => []))
+ * {@inheritDoc}
*/
public function checkSelfServiceOptions($fields, $attributes, $passwordChangeOnly, $readOnlyFields) {
$return = ['messages' => [], 'add' => [], 'del' => [], 'mod' => [], 'info' => []];