Skip to content

Commit b0974f9

Browse files
authored
Merge pull request #197 from cameron1729/issue-196
Ignore enums in InlineCommentSniff
2 parents 5cb7a7a + 0da7102 commit b0974f9

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

moodle/Sniffs/Commenting/InlineCommentSniff.php

+1
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ public function process(File $phpcsFile, $stackPtr) {
100100
T_STATIC,
101101
T_ABSTRACT,
102102
T_CONST,
103+
T_ENUM,
103104
T_PROPERTY,
104105
T_INCLUDE,
105106
T_INCLUDE_ONCE,

moodle/Tests/MoodleStandardTest.php

+2
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@ public function testMoodleCommentingInlineComment() {
164164
143 => '@Message: Tab found before comment',
165165
144 => '@Source: moodle.Commenting.InlineComment.SpacingBefore',
166166
146 => '@Message: Blank comments are not allowed',
167+
152 => 0,
167168
]);
168169
$this->setWarnings([
169170
4 => 0,
@@ -182,6 +183,7 @@ public function testMoodleCommentingInlineComment() {
182183
79 => 1,
183184
118 => 0,
184185
122 => 0,
186+
152 => 0,
185187
]);
186188

187189
// Let's do all the hard work!

moodle/Tests/fixtures/moodle_comenting_inlinecomment.php

+4
Original file line numberDiff line numberDiff line change
@@ -146,3 +146,7 @@ function dah() {
146146
//
147147

148148
// Blank comments, like previous one, are ugly too.
149+
}
150+
151+
/** This is an enum comment */
152+
enum commented_enum {}

0 commit comments

Comments
 (0)