History log of /php-src/Zend/tests/gh11488.phpt (Results 1 – 3 of 3)
Revision Date Author Comments
# 2079da01 08-Apr-2024 Máté Kocsis

Fix #13865 Improve parameter and return value related deprecation messages (#13913)

I added the function/method name to some compile-time deprecation messages which are related to parameters

Fix #13865 Improve parameter and return value related deprecation messages (#13913)

I added the function/method name to some compile-time deprecation messages which are related to parameters/return values. Consistently with the other similar error messages, I included the function/method name at the start of the message.

show more ...


# 330cc5cd 13-Mar-2024 Máté Kocsis

Deprecate implicit nullable parameter types (#12959)

RFC: https://wiki.php.net/rfc/deprecate-implicitly-nullable-types

Co-authored-by: Gina Peter Banyard <girgias@php.net>


# 68ef3938 21-Jun-2023 Ilija Tovilo

Fix missing "Optional parameter before required" deprecation on union null type

The check would only work for the ?type syntax, but not type|null. Switch to a
check during type compilat

Fix missing "Optional parameter before required" deprecation on union null type

The check would only work for the ?type syntax, but not type|null. Switch to a
check during type compilation instead.

Fixes GH-11488
Closes GH-11497

show more ...