Skip to content

Commit

Permalink
Merge pull request #188 from localheinz/fix/regenerate
Browse files Browse the repository at this point in the history
Fix: Regenerate files
  • Loading branch information
Kharhamel authored Jan 20, 2020
2 parents 0fd5b81 + 965ea60 commit 6662d0b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
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

0 comments on commit 6662d0b

Please # to comment.