Skip to content

Commit 48b2cbc

Browse files
committed
Add mixed type
"mixed" type declare is added in PHP 8.0. https://wiki.php.net/rfc/mixed_type_v2
1 parent 4369c21 commit 48b2cbc

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

php-mode.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ In that case set to `NIL'."
472472

473473
(c-lang-defconst c-primitive-type-kwds
474474
php '("int" "integer" "bool" "boolean" "float" "double" "real"
475-
"string" "object" "void"))
475+
"string" "object" "void" "mixed"))
476476

477477
(c-lang-defconst c-class-decl-kwds
478478
"Keywords introducing declarations where the following block (if any)

tests/lang/types/keywords.php

+1
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@
1212
string;
1313
object;
1414
resource;
15+
mixed;

0 commit comments

Comments
 (0)