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
4 changes: 2 additions & 2 deletions generated/openssl.php
Original file line number Diff line number Diff line change
Expand Up @@ -1201,15 +1201,15 @@ function openssl_random_pseudo_bytes(int $length, ?bool &$strong_result = null):
* It is strongly recommended to explicitly specify a secure cipher method.
*
*
* @param string $iv The initialization vector.
* @param string|null $iv The initialization vector.
* @return int Returns the length of the sealed data on success.
* If successful the sealed data is returned in
* sealed_data, and the envelope keys in
* encrypted_keys.
* @throws OpensslException
*
*/
function openssl_seal(string $data, ?string &$sealed_data, ?array &$encrypted_keys, array $public_key, string $cipher_algo, string &$iv = null): int
function openssl_seal(string $data, ?string &$sealed_data, ?array &$encrypted_keys, array $public_key, string $cipher_algo, ?string &$iv = null): int
{
error_clear_last();
$result = \openssl_seal($data, $sealed_data, $encrypted_keys, $public_key, $cipher_algo, $iv);
Expand Down
2 changes: 1 addition & 1 deletion generated/url.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ function get_meta_tags(string $filename, bool $use_include_path = false): array
* URL component as a string (except when
* PHP_URL_PORT is given, in which case the return
* value will be an int).
* @return mixed On seriously malformed URLs, parse_url.
* @return array|int|string|null On seriously malformed URLs, parse_url.
*
* If the component parameter is omitted, an
* associative array is returned. At least one element will be
Expand Down
14 changes: 7 additions & 7 deletions generator/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.