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.
2 parents 4369c21 + c8f2a5d commit 749e019Copy full SHA for 749e019
php-mode.el
@@ -472,7 +472,7 @@ In that case set to `NIL'."
472
473
(c-lang-defconst c-primitive-type-kwds
474
php '("int" "integer" "bool" "boolean" "float" "double" "real"
475
- "string" "object" "void"))
+ "string" "object" "void" "mixed"))
476
477
(c-lang-defconst c-class-decl-kwds
478
"Keywords introducing declarations where the following block (if any)
tests/lang/types/keywords.php
@@ -12,3 +12,4 @@
12
string;
13
object;
14
resource;
15
+mixed;
tests/lang/types/keywords.php.faces
@@ -20,4 +20,6 @@
20
("string" . font-lock-type-face)
21
(";\n")
22
("object" . font-lock-type-face)
23
- (";\nresource;\n"))
+ (";\nresource;\n")
24
+ ("mixed" . font-lock-type-face)
25
+ (";\n"))
0 commit comments