diff --git a/appendices/migration84/constants.xml b/appendices/migration84/constants.xml index ca32ecd0ed68..a00cd7af282e 100644 --- a/appendices/migration84/constants.xml +++ b/appendices/migration84/constants.xml @@ -286,6 +286,21 @@ + + Tokenizer + + + T_PUBLIC_SET + + + T_PROTECTED_SET + + + T_PRIVATE_SET + + + + XML diff --git a/appendices/tokens.xml b/appendices/tokens.xml index 85ca68647377..68e4ea02f531 100644 --- a/appendices/tokens.xml +++ b/appendices/tokens.xml @@ -708,6 +708,13 @@ defined('T_FN') || define('T_FN', 10001); classes and objects + + T_PRIVATE_SET + private(set) + + property hooks (available as of PHP 8.4.0) + + T_PROTECTED protected @@ -715,6 +722,13 @@ defined('T_FN') || define('T_FN', 10001); classes and objects + + T_PROTECTED_SET + protected(set) + + property hooks (available as of PHP 8.4.0) + + T_PUBLIC public @@ -722,6 +736,13 @@ defined('T_FN') || define('T_FN', 10001); classes and objects + + T_PUBLIC_SET + public(set) + + property hooks (available as of PHP 8.4.0) + + T_READONLY readonly