diff options
author | MCMic <come@chilliet.eu> | 2020-09-28 14:19:43 +0200 |
---|---|---|
committer | Côme Chilliet <mcmic@php.net> | 2020-09-29 16:31:08 +0200 |
commit | 27fe37e39497c81cd6ef10150b2111ddf23f75f2 (patch) | |
tree | c92cd94e64e999938fbf04acd89be7f62683084c | |
parent | febd33cf7e9422cc823453b762a8b8a6ae814778 (diff) | |
download | php-git-27fe37e39497c81cd6ef10150b2111ddf23f75f2.tar.gz |
Improve parameter naming in ldap_connect
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 dd5bcf3f28..941ec5ba58 100644 --- a/ext/ldap/ldap.stub.php +++ b/ext/ldap/ldap.stub.php @@ -4,7 +4,7 @@ #ifdef HAVE_ORALDAP /** @return resource|false */ -function ldap_connect(?string $uri = null, int $port = 389, string $wallet = UNKNOWN, string $wallet_passwd = UNKNOWN, int $authmode = GSLC_SSL_NO_AUTH) {} +function ldap_connect(?string $uri = null, int $port = 389, string $wallet = UNKNOWN, string $password = UNKNOWN, int $auth_mode = GSLC_SSL_NO_AUTH) {} #else /** @return resource|false */ function ldap_connect(?string $uri = null, int $port = 389) {} |