Skip to content

Commit 49ad422

Browse files
committed
OtherContextSensitiveKeywordsTest: fix some unintentional parse errors in test code
1 parent 8da41e9 commit 49ad422

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/Core/Tokenizers/PHP/OtherContextSensitiveKeywordsTest.inc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ class OtherContextSensitiveKeywords
55
const /* testKeywordParentAsConstantNameShouldBeString */ PARENT = 'PARENT';
66
const /* testKeywordSelfAsConstantNameShouldBeString */ SELF = 'SELF';
77

8-
const /* testKeywordFalseAsConstantNameShouldBeString */ FALSE = 'FALSE',
9-
const /* testKeywordTrueAsConstantNameShouldBeString */ TRUE = 'TRUE',
10-
const /* testKeywordNullAsConstantNameShouldBeString */ NULL = 'NULL',
8+
const /* testKeywordFalseAsConstantNameShouldBeString */ FALSE = 'FALSE';
9+
const /* testKeywordTrueAsConstantNameShouldBeString */ TRUE = 'TRUE';
10+
const /* testKeywordNullAsConstantNameShouldBeString */ NULL = 'NULL';
1111
}
1212

1313
abstract class SomeClass

0 commit comments

Comments
 (0)