1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

add missing keywords to parser fuzzer dict from PHP 7.4 to 8.3 (#13160)

* Added missing keywords to parser fuzzer dict from PHP 7.4 to 8.3

* Added null return type
This commit is contained in:
Jorg Adam Sowa
2024-01-17 01:51:42 +01:00
committed by GitHub
parent 6d0a3e86f0
commit dd141f9e3e

View File

@@ -4,6 +4,7 @@
"function"
"const"
"return"
"mixed"
"yield"
"yield from"
"try"
@@ -29,6 +30,7 @@
"endswitch"
"case"
"default"
"match"
"break"
"continue"
"goto"
@@ -46,6 +48,8 @@
"integer"
"float"
"double"
"never"
"void"
"real"
"string"
"binary"
@@ -53,6 +57,9 @@
"object"
"bool"
"boolean"
"true"
"false"
"null"
"unset"
"eval"
"include"
@@ -72,9 +79,12 @@
"private"
"protected"
"public"
"readonly"
"enum"
"unset"
"list"
"callable"
"iterable"
"__class__"
"__trait__"
"__function__"