diff options
author | MCMic <come@chilliet.eu> | 2020-09-28 14:20:28 +0200 |
---|---|---|
committer | Côme Chilliet <mcmic@php.net> | 2020-09-29 16:31:08 +0200 |
commit | 462c94447e3d1fcf0fef5122108e57f251770bcf (patch) | |
tree | cd43b81af2d8899fc4f8d32816a9dd94dab37b77 | |
parent | 27fe37e39497c81cd6ef10150b2111ddf23f75f2 (diff) | |
download | php-git-462c94447e3d1fcf0fef5122108e57f251770bcf.tar.gz |
Improve parameter naming in ldap_exop_passwd
Co-authored-by: Nikita Popov <nikita.ppv@googlemail.com>
-rw-r--r-- | ext/ldap/ldap.stub.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/ldap/ldap.stub.php b/ext/ldap/ldap.stub.php index 941ec5ba58..dc92eb2bb1 100644 --- a/ext/ldap/ldap.stub.php +++ b/ext/ldap/ldap.stub.php @@ -305,7 +305,7 @@ function ldap_exop($link, string $reqoid, ?string $reqdata = null, ?array $contr * @param resource $link * @param array $controls */ -function ldap_exop_passwd($link, string $user = "", string $oldpw = "", string $newpw = "", &$controls = null): string|bool {} +function ldap_exop_passwd($link, string $user = "", string $old_password = "", string $new_password = "", &$controls = null): string|bool {} #endif |