Skip to content

Commit 3876225

Browse files
committed
Fix casing of NULL default values
1 parent 243827b commit 3876225

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

ext/ldap/ldap.stub.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -790,12 +790,12 @@ function ldap_8859_to_t61(string $value): string|false {}
790790
* @param string $response_data
791791
* @param string $response_oid
792792
*/
793-
function ldap_exop(LDAP\Connection $ldap, string $request_oid, ?string $request_data = null, ?array $controls = NULL, &$response_data = UNKNOWN, &$response_oid = null): LDAP\Result|bool {}
793+
function ldap_exop(LDAP\Connection $ldap, string $request_oid, ?string $request_data = null, ?array $controls = null, &$response_data = UNKNOWN, &$response_oid = null): LDAP\Result|bool {}
794794
/**
795795
* @param string $response_data
796796
* @param string $response_oid
797797
*/
798-
function ldap_exop_sync(LDAP\Connection $ldap, string $request_oid, ?string $request_data = null, ?array $controls = NULL, &$response_data = null, &$response_oid = null): LDAP\Result|bool {}
798+
function ldap_exop_sync(LDAP\Connection $ldap, string $request_oid, ?string $request_data = null, ?array $controls = null, &$response_data = null, &$response_oid = null): LDAP\Result|bool {}
799799
#endif
800800

801801
#ifdef HAVE_LDAP_PASSWD

ext/ldap/ldap_arginfo.h

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)