We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
final
1 parent 6764d88 commit a257099Copy full SHA for a257099
ChangeLog.md
@@ -3,6 +3,12 @@ XP AST ChangeLog
3
4
## ?.?.? / ????-??-??
5
6
+## 11.5.0 / 2025-04-05
7
+
8
+* Added syntactic support for `final` promoted parameters, see this RFC:
9
+ https://wiki.php.net/rfc/final_promotion
10
+ (@thekid)
11
12
## 11.4.0 / 2025-01-26
13
14
* Merged PR #55: Add suport for heredoc (and its nowdoc variant) - @thekid
src/main/php/lang/ast/syntax/PHP.class.php
@@ -1504,6 +1504,7 @@ private function parameters($parse) {
1504
'protected' => true,
1505
'public' => true,
1506
'readonly' => true,
1507
+ 'final' => true,
1508
];
1509
1510
$parameters= [];
0 commit comments