Skip to content

Commit 601ff98

Browse files
authored
Merge pull request #1219 from PHPCSStandards/feature/tests-fix-unintentional-parse-errors
OtherContextSensitiveKeywordsTest: fix some unintentional parse errors in test code
2 parents 8da41e9 + 49ad422 commit 601ff98

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)