Skip to content

Commit 965ea60

Browse files
committed
Fix: Regenerate files
1 parent 0fd5b81 commit 965ea60

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

generated/curl.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -818,6 +818,15 @@ function curl_multi_init()
818818
*
819819
*
820820
*
821+
* CURLOPT_HTTP_CONTENT_DECODING
822+
*
823+
* FALSE to get the raw HTTP response body.
824+
*
825+
*
826+
* Available as of PHP 5.5.0 if built against libcurl >= 7.16.2.
827+
*
828+
*
829+
*
821830
* CURLOPT_MUTE
822831
*
823832
* TRUE to be completely silent with regards to

generated/ldap.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,14 +83,13 @@ function ldap_bind_ext($link_identifier, ?string $bind_rdn = null, ?string $bind
8383
* @param resource $link_identifier An LDAP link identifier, returned by ldap_connect.
8484
* @param string|null $bind_rdn
8585
* @param string|null $bind_password
86-
* @param array $serverctrls Array of LDAP Controls to send with the request.
8786
* @throws LdapException
8887
*
8988
*/
90-
function ldap_bind($link_identifier, ?string $bind_rdn = null, ?string $bind_password = null, array $serverctrls = null): void
89+
function ldap_bind($link_identifier, ?string $bind_rdn = null, ?string $bind_password = null): void
9190
{
9291
error_clear_last();
93-
$result = \ldap_bind($link_identifier, $bind_rdn, $bind_password, $serverctrls);
92+
$result = \ldap_bind($link_identifier, $bind_rdn, $bind_password);
9493
if ($result === false) {
9594
throw LdapException::createFromPhpError();
9695
}

generated/sockets.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ function socket_accept($socket)
4949
* Create a Socket resource, and bind it to the provided AddrInfo resource. The return
5050
* value of this function may be used with socket_listen.
5151
*
52-
* @param resource $addr Resource created from socket_addrinfo_lookup().
52+
* @param resource $addr Resource created from socket_addrinfo_lookup.
5353
* @return resource Returns a Socket resource on success.
5454
* @throws SocketsException
5555
*
@@ -69,7 +69,7 @@ function socket_addrinfo_bind($addr)
6969
* Create a Socket resource, and connect it to the provided AddrInfo resource. The return
7070
* value of this function may be used with the rest of the socket functions.
7171
*
72-
* @param resource $addr Resource created from socket_addrinfo_lookup()
72+
* @param resource $addr Resource created from socket_addrinfo_lookup
7373
* @return resource Returns a Socket resource on success.
7474
* @throws SocketsException
7575
*

0 commit comments

Comments
 (0)