diff options
author | MCMic <come@chilliet.eu> | 2020-09-28 14:20:48 +0200 |
---|---|---|
committer | Côme Chilliet <mcmic@php.net> | 2020-09-29 16:31:08 +0200 |
commit | 29e1a9717d86f39522a736e91c7b4ff5ed3f8f7c (patch) | |
tree | 04480047351131b8fd29732a7936762420c0d99e | |
parent | 462c94447e3d1fcf0fef5122108e57f251770bcf (diff) | |
download | php-git-29e1a9717d86f39522a736e91c7b4ff5ed3f8f7c.tar.gz |
Improve parameter naming in ldap_rename
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 dc92eb2bb1..a5233f473e 100644 --- a/ext/ldap/ldap.stub.php +++ b/ext/ldap/ldap.stub.php @@ -207,7 +207,7 @@ function ldap_control_paged_result_response($link, $result, &$cookie = null, &$e #if (LDAP_API_VERSION > 2000) || defined(HAVE_ORALDAP) /** @param resource $link */ -function ldap_rename($link, string $dn, string $newrdn, string $newparent, bool $deleteoldrdn, array $controls = []): bool {} +function ldap_rename($link, string $dn, string $new_rdn, string $new_parent, bool $delete_old_rdn, array $controls = []): bool {} /** * @param resource $link |