diff --git a/generated/curl.php b/generated/curl.php index 8b7d9946..d6873b3b 100644 --- a/generated/curl.php +++ b/generated/curl.php @@ -818,6 +818,15 @@ function curl_multi_init() * * * + * CURLOPT_HTTP_CONTENT_DECODING + * + * FALSE to get the raw HTTP response body. + * + * + * Available as of PHP 5.5.0 if built against libcurl >= 7.16.2. + * + * + * * CURLOPT_MUTE * * TRUE to be completely silent with regards to diff --git a/generated/ldap.php b/generated/ldap.php index c5535545..871f2958 100644 --- a/generated/ldap.php +++ b/generated/ldap.php @@ -83,14 +83,13 @@ function ldap_bind_ext($link_identifier, ?string $bind_rdn = null, ?string $bind * @param resource $link_identifier An LDAP link identifier, returned by ldap_connect. * @param string|null $bind_rdn * @param string|null $bind_password - * @param array $serverctrls Array of LDAP Controls to send with the request. * @throws LdapException * */ -function ldap_bind($link_identifier, ?string $bind_rdn = null, ?string $bind_password = null, array $serverctrls = null): void +function ldap_bind($link_identifier, ?string $bind_rdn = null, ?string $bind_password = null): void { error_clear_last(); - $result = \ldap_bind($link_identifier, $bind_rdn, $bind_password, $serverctrls); + $result = \ldap_bind($link_identifier, $bind_rdn, $bind_password); if ($result === false) { throw LdapException::createFromPhpError(); } diff --git a/generated/sockets.php b/generated/sockets.php index 7273d079..cf8de0e7 100644 --- a/generated/sockets.php +++ b/generated/sockets.php @@ -49,7 +49,7 @@ function socket_accept($socket) * Create a Socket resource, and bind it to the provided AddrInfo resource. The return * value of this function may be used with socket_listen. * - * @param resource $addr Resource created from socket_addrinfo_lookup(). + * @param resource $addr Resource created from socket_addrinfo_lookup. * @return resource Returns a Socket resource on success. * @throws SocketsException * @@ -69,7 +69,7 @@ function socket_addrinfo_bind($addr) * Create a Socket resource, and connect it to the provided AddrInfo resource. The return * value of this function may be used with the rest of the socket functions. * - * @param resource $addr Resource created from socket_addrinfo_lookup() + * @param resource $addr Resource created from socket_addrinfo_lookup * @return resource Returns a Socket resource on success. * @throws SocketsException *