Skip to content

Commit 0d7f970

Browse files
committed
Fix class name in test
"Class" is malform classname in PHP 7.
1 parent 2db01f5 commit 0d7f970

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/variables.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
// Test highlighting of variables with the variable-name-face
44
$regularVariable;
55
$$variableVariable;
6-
Class::$staticVariable;
6+
MyClass::$staticVariable;
77
$object->memberVariable;
88
$object->funCall();

0 commit comments

Comments
 (0)