Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions generated/curl.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 2 additions & 3 deletions generated/ldap.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down
4 changes: 2 additions & 2 deletions generated/sockets.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*
Expand All @@ -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
*
Expand Down