diff options
author | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-04-12 00:25:33 +0200 |
---|---|---|
committer | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-04-12 00:25:33 +0200 |
commit | e088836bbc755a2bb1d827d4de6206222b0ca792 (patch) | |
tree | 6c60f726e5b31a8af5a95fece56346daed1d19cc /ext/ldap | |
parent | 047d8147047b319feca477ff4ba28ca5a2426a05 (diff) | |
download | php-git-e088836bbc755a2bb1d827d4de6206222b0ca792.tar.gz |
Fix nullable types in PHPDoc
Diffstat (limited to 'ext/ldap')
-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 afe6b7e918..413d20fcf0 100644 --- a/ext/ldap/ldap.stub.php +++ b/ext/ldap/ldap.stub.php @@ -223,7 +223,7 @@ function ldap_rename_ext($link_identifier, string $dn, string $newrdn, string $n /** @param resource $link_identifier */ function ldap_get_option($link_identifier, int $option, &$retval = null): bool {} -/** @param ?resource $link_identifier */ +/** @param resource|null $link_identifier */ function ldap_set_option($link_identifier, int $option, $newval): bool {} /** |