Skip to content

Commit bd5419a

Browse files
committed
Merge branch 'PHP-8.0'
* PHP-8.0: password_get_info() may return array_of_null
2 parents 3ddab31 + af9fadc commit bd5419a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/Optimizer/zend_func_info.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ static const func_info_t func_infos[] = {
211211
F1("base64_decode", MAY_BE_FALSE | MAY_BE_STRING),
212212
F1("base64_encode", MAY_BE_STRING),
213213
F1("password_hash", MAY_BE_STRING),
214-
F1("password_get_info", MAY_BE_ARRAY | MAY_BE_ARRAY_KEY_STRING | MAY_BE_ARRAY_OF_LONG | MAY_BE_ARRAY_OF_STRING | MAY_BE_ARRAY_OF_ARRAY),
214+
F1("password_get_info", MAY_BE_ARRAY | MAY_BE_ARRAY_KEY_STRING | MAY_BE_ARRAY_OF_NULL | MAY_BE_ARRAY_OF_LONG | MAY_BE_ARRAY_OF_STRING | MAY_BE_ARRAY_OF_ARRAY),
215215
F1("convert_uuencode", MAY_BE_STRING),
216216
F1("convert_uudecode", MAY_BE_FALSE | MAY_BE_STRING),
217217
F1("pow", MAY_BE_LONG | MAY_BE_DOUBLE | MAY_BE_OBJECT),

0 commit comments

Comments
 (0)