Skip to content

Commit

Permalink
Merge pull request #397 from thecodingmachine/create-pull-request/reg…
Browse files Browse the repository at this point in the history
…enerate-files

Automatically regenerate the files
  • Loading branch information
Kharhamel authored Oct 19, 2022
2 parents e788f3d + 7612f75 commit 2d46b39
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions generated/sockets.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,10 @@ function socket_addrinfo_connect($address)
* a set of AddressInfo instances that we can bind to using socket_addrinfo_bind.
*
* @param string $host Hostname to search.
* @param mixed $service The service to connect to. If service is a name, it is translated to the corresponding
* port number.
* @param mixed $service The service to connect to. If service is a numeric string, it designates the port.
* Otherwise it designates a network service name, which is mapped to a port by the operating system.
* @param array $hints Hints provide criteria for selecting addresses returned. You may specify the
* hints as defined by getadrinfo.
* hints as defined by getaddrinfo.
* @return resource[] Returns an array of AddressInfo instances that can be used with the other socket_addrinfo functions.
* On failure, FALSE is returned.
* @throws SocketsException
Expand Down Expand Up @@ -726,7 +726,7 @@ function socket_set_nonblock($socket): void
* @param resource $socket A Socket instance created with socket_create
* or socket_accept.
* @param int $level The level parameter specifies the protocol
* level at which the option resides. For example, to retrieve options at
* level at which the option resides. For example, to set options at
* the socket level, a level parameter of
* SOL_SOCKET would be used. Other levels, such as
* TCP, can be used by specifying the protocol number of that level.
Expand Down

0 comments on commit 2d46b39

Please sign in to comment.