Skip to content

Commit

Permalink
FIX: updated the generator phpstan to 0.12.99
Browse files Browse the repository at this point in the history
  • Loading branch information
Kharhamel committed Oct 16, 2021
1 parent a6a0b1b commit 875b00a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
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.

0 comments on commit 875b00a

Please sign in to comment.