@@ -64,7 +64,7 @@ private function validateMultiLinesInShortDescription(
64
64
&& $ tokens [$ shortPtrEnd ]['code ' ] !== T_DOC_COMMENT_TAG
65
65
) {
66
66
$ error = 'Short description should not be in multi lines ' ;
67
- $ phpcsFile ->addFixableError ($ error , $ shortPtrEnd + 1 , 'MethodAnnotation ' );
67
+ $ phpcsFile ->addError ($ error , $ shortPtrEnd + 1 , 'MethodAnnotation ' );
68
68
}
69
69
}
70
70
@@ -95,7 +95,7 @@ private function validateSpacingBetweenShortAndLongDescriptions(
95
95
&& $ tokens [$ shortPtrEnd ]['code ' ] !== T_DOC_COMMENT_TAG
96
96
) {
97
97
$ error = 'There must be exactly one blank line between lines short and long descriptions ' ;
98
- $ phpcsFile ->addFixableError ($ error , $ shortPtrEnd + 1 , 'MethodAnnotation ' );
98
+ $ phpcsFile ->addError ($ error , $ shortPtrEnd + 1 , 'MethodAnnotation ' );
99
99
}
100
100
if ($ shortPtrEnd != $ shortPtr ) {
101
101
$ this ->validateLongDescriptionFormat ($ phpcsFile , $ shortPtrEnd , $ commentEndPtr , $ emptyTypeTokens );
@@ -123,16 +123,16 @@ private function validateShortDescriptionFormat(
123
123
$ tokens = $ phpcsFile ->getTokens ();
124
124
if ($ tokens [$ shortPtr ]['line ' ] !== $ tokens [$ stackPtr ]['line ' ] + 1 ) {
125
125
$ error = 'No blank lines are allowed before short description ' ;
126
- $ phpcsFile ->addFixableError ($ error , $ shortPtr , 'MethodAnnotation ' );
126
+ $ phpcsFile ->addError ($ error , $ shortPtr , 'MethodAnnotation ' );
127
127
}
128
128
if (strtolower ($ tokens [$ shortPtr ]['content ' ]) === '{@inheritdoc} ' ) {
129
129
$ error = 'If the @inheritdoc not inline it shouldn’t have braces ' ;
130
- $ phpcsFile ->addFixableError ($ error , $ shortPtr , 'MethodAnnotation ' );
130
+ $ phpcsFile ->addError ($ error , $ shortPtr , 'MethodAnnotation ' );
131
131
}
132
132
$ shortPtrContent = $ tokens [$ shortPtr ]['content ' ];
133
133
if (preg_match ('/^\p{Ll}/u ' , $ shortPtrContent ) === 1 ) {
134
134
$ error = 'Short description must start with a capital letter ' ;
135
- $ phpcsFile ->addFixableError ($ error , $ shortPtr , 'MethodAnnotation ' );
135
+ $ phpcsFile ->addError ($ error , $ shortPtr , 'MethodAnnotation ' );
136
136
}
137
137
$ this ->validateNoExtraNewLineBeforeShortDescription (
138
138
$ phpcsFile ,
@@ -171,16 +171,16 @@ private function validateLongDescriptionFormat(
171
171
$ longPtr = $ phpcsFile ->findNext ($ emptyTypeTokens , $ shortPtrEnd + 1 , $ commentEndPtr - 1 , true );
172
172
if (strtolower ($ tokens [$ longPtr ]['content ' ]) === '@inheritdoc ' ) {
173
173
$ error = '@inheritdoc imports only short description, annotation must have long description ' ;
174
- $ phpcsFile ->addFixableError ($ error , $ longPtr , 'MethodAnnotation ' );
174
+ $ phpcsFile ->addError ($ error , $ longPtr , 'MethodAnnotation ' );
175
175
}
176
176
if ($ longPtr !== false && $ tokens [$ longPtr ]['code ' ] === T_DOC_COMMENT_STRING ) {
177
177
if ($ tokens [$ longPtr ]['line ' ] !== $ tokens [$ shortPtrEnd ]['line ' ] + 2 ) {
178
178
$ error = 'There must be exactly one blank line between descriptions ' ;
179
- $ phpcsFile ->addFixableError ($ error , $ longPtr , 'MethodAnnotation ' );
179
+ $ phpcsFile ->addError ($ error , $ longPtr , 'MethodAnnotation ' );
180
180
}
181
181
if (preg_match ('/^\p{Ll}/u ' , $ tokens [$ longPtr ]['content ' ]) === 1 ) {
182
182
$ error = 'Long description must start with a capital letter ' ;
183
- $ phpcsFile ->addFixableError ($ error , $ longPtr , 'MethodAnnotation ' );
183
+ $ phpcsFile ->addError ($ error , $ longPtr , 'MethodAnnotation ' );
184
184
}
185
185
}
186
186
}
@@ -203,7 +203,7 @@ public function validateTagsSpacingFormat(File $phpcsFile, int $commentStartPtr,
203
203
&& strtolower ($ commentTagPtrContent ) !== '@inheritdoc '
204
204
) {
205
205
$ error = 'There must be exactly one blank line before tags ' ;
206
- $ phpcsFile ->addFixableError ($ error , $ firstTagPtr , 'MethodAnnotation ' );
206
+ $ phpcsFile ->addError ($ error , $ firstTagPtr , 'MethodAnnotation ' );
207
207
}
208
208
}
209
209
}
@@ -240,7 +240,7 @@ public function validateTagGroupingFormat(File $phpcsFile, int $commentStartPtr)
240
240
if ($ paramGroupId !== null
241
241
&& $ paramGroupId !== $ groupId ) {
242
242
$ error = 'Parameter tags must be grouped together ' ;
243
- $ phpcsFile ->addFixableError ($ error , $ tag , 'MethodAnnotation ' );
243
+ $ phpcsFile ->addError ($ error , $ tag , 'MethodAnnotation ' );
244
244
}
245
245
if ($ paramGroupId === null ) {
246
246
$ paramGroupId = $ groupId ;
@@ -273,7 +273,7 @@ public function validateTagAligningFormat(File $phpcsFile, int $commentStartPtr)
273
273
274
274
if (!$ this ->allTagsAligned ($ actualPositions )
275
275
&& !$ this ->noneTagsAligned ($ actualPositions , $ noAlignmentPositions )) {
276
- $ phpcsFile ->addFixableError (
276
+ $ phpcsFile ->addError (
277
277
'Tags visual alignment must be consistent ' ,
278
278
$ stackPtr ,
279
279
'MethodArguments '
@@ -322,7 +322,7 @@ private function validateNoExtraNewLineBeforeShortDescription(
322
322
$ prevPtr = $ phpcsFile ->findPrevious ($ emptyTypeTokens , $ commentEndPtr - 1 , $ commentStartPtr , true );
323
323
if ($ tokens [$ prevPtr ]['line ' ] < ($ tokens [$ commentEndPtr ]['line ' ] - 1 )) {
324
324
$ error = 'Additional blank lines found at end of the annotation block ' ;
325
- $ phpcsFile ->addFixableError ($ error , $ commentEndPtr , 'MethodAnnotation ' );
325
+ $ phpcsFile ->addError ($ error , $ commentEndPtr , 'MethodAnnotation ' );
326
326
}
327
327
}
328
328
@@ -351,7 +351,7 @@ public function validateDescriptionFormatStructure(
351
351
&& strtolower ($ commentTagPtrContent ) !== '@inheritdoc '
352
352
) {
353
353
$ error = 'Missing short description ' ;
354
- $ phpcsFile ->addFixableError ($ error , $ commentStartPtr , 'MethodAnnotation ' );
354
+ $ phpcsFile ->addError ($ error , $ commentStartPtr , 'MethodAnnotation ' );
355
355
} else {
356
356
$ this ->validateShortDescriptionFormat (
357
357
$ phpcsFile ,
0 commit comments