Skip to content

Commit 5328ace

Browse files
authored
Merge pull request #299 from thecodingmachine/updatePhpstan
FIX: updated the generator phpstan to 0.12.99
2 parents a6a0b1b + 875b00a commit 5328ace

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

generated/openssl.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1201,15 +1201,15 @@ function openssl_random_pseudo_bytes(int $length, ?bool &$strong_result = null):
12011201
* It is strongly recommended to explicitly specify a secure cipher method.
12021202
*
12031203
*
1204-
* @param string $iv The initialization vector.
1204+
* @param string|null $iv The initialization vector.
12051205
* @return int Returns the length of the sealed data on success.
12061206
* If successful the sealed data is returned in
12071207
* sealed_data, and the envelope keys in
12081208
* encrypted_keys.
12091209
* @throws OpensslException
12101210
*
12111211
*/
1212-
function openssl_seal(string $data, ?string &$sealed_data, ?array &$encrypted_keys, array $public_key, string $cipher_algo, string &$iv = null): int
1212+
function openssl_seal(string $data, ?string &$sealed_data, ?array &$encrypted_keys, array $public_key, string $cipher_algo, ?string &$iv = null): int
12131213
{
12141214
error_clear_last();
12151215
$result = \openssl_seal($data, $sealed_data, $encrypted_keys, $public_key, $cipher_algo, $iv);

generated/url.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ function get_meta_tags(string $filename, bool $use_include_path = false): array
125125
* URL component as a string (except when
126126
* PHP_URL_PORT is given, in which case the return
127127
* value will be an int).
128-
* @return mixed On seriously malformed URLs, parse_url.
128+
* @return array|int|string|null On seriously malformed URLs, parse_url.
129129
*
130130
* If the component parameter is omitted, an
131131
* associative array is returned. At least one element will be

generator/composer.lock

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)