diff --git a/tests/Core/Tokenizers/PHP/OtherContextSensitiveKeywordsTest.inc b/tests/Core/Tokenizers/PHP/OtherContextSensitiveKeywordsTest.inc index 9acb05a366..6d50da3ed9 100644 --- a/tests/Core/Tokenizers/PHP/OtherContextSensitiveKeywordsTest.inc +++ b/tests/Core/Tokenizers/PHP/OtherContextSensitiveKeywordsTest.inc @@ -5,9 +5,9 @@ class OtherContextSensitiveKeywords const /* testKeywordParentAsConstantNameShouldBeString */ PARENT = 'PARENT'; const /* testKeywordSelfAsConstantNameShouldBeString */ SELF = 'SELF'; - const /* testKeywordFalseAsConstantNameShouldBeString */ FALSE = 'FALSE', - const /* testKeywordTrueAsConstantNameShouldBeString */ TRUE = 'TRUE', - const /* testKeywordNullAsConstantNameShouldBeString */ NULL = 'NULL', + const /* testKeywordFalseAsConstantNameShouldBeString */ FALSE = 'FALSE'; + const /* testKeywordTrueAsConstantNameShouldBeString */ TRUE = 'TRUE'; + const /* testKeywordNullAsConstantNameShouldBeString */ NULL = 'NULL'; } abstract class SomeClass