Skip to content

Commit 9187910

Browse files
authored
Merge pull request #3908 from fredden/auto-fix/function-comment/spacing-after
Auto-fix PEAR.Commenting.FunctionComment.SpacingAfter
2 parents 321d252 + 9a5b392 commit 9187910

File tree

4 files changed

+70
-7
lines changed

4 files changed

+70
-7
lines changed

src/Standards/PEAR/Sniffs/Commenting/FunctionCommentSniff.php

+17-3
Original file line numberDiff line numberDiff line change
@@ -129,11 +129,25 @@ public function process(File $phpcsFile, $stackPtr)
129129
&& $tokens[$i]['line'] !== $tokens[($i + 1)]['line']
130130
) {
131131
$error = 'There must be no blank lines after the function comment';
132-
$phpcsFile->addError($error, $commentEnd, 'SpacingAfter');
132+
$fix = $phpcsFile->addFixableError($error, $commentEnd, 'SpacingAfter');
133+
134+
if ($fix === true) {
135+
$phpcsFile->fixer->beginChangeset();
136+
137+
while ($i < $stackPtr
138+
&& $tokens[$i]['code'] === T_WHITESPACE
139+
&& $tokens[$i]['line'] !== $tokens[($i + 1)]['line']
140+
) {
141+
$phpcsFile->fixer->replaceToken($i++, '');
142+
}
143+
144+
$phpcsFile->fixer->endChangeset();
145+
}
146+
133147
break;
134148
}
135-
}
136-
}
149+
}//end for
150+
}//end if
137151

138152
$commentStart = $tokens[$commentEnd]['comment_opener'];
139153
foreach ($tokens[$commentStart]['comment_tags'] as $tag) {

src/Standards/PEAR/Tests/Commenting/FunctionCommentUnitTest.inc

+34
Original file line numberDiff line numberDiff line change
@@ -476,3 +476,37 @@ class Something implements JsonSerializable {
476476

477477
public function blankLineDetectionC() {}
478478
}
479+
480+
class SpacingAfter {
481+
/**
482+
* There are multiple blank lines between this comment and the next function.
483+
*
484+
* @return void
485+
*/
486+
487+
488+
489+
490+
491+
492+
493+
494+
public function multipleBlankLines() {}
495+
496+
/**
497+
* There are multiple blank lines, and some "empty" lines with only
498+
* spaces/tabs between this comment and the next function.
499+
*
500+
* @return void
501+
*/
502+
503+
504+
505+
506+
507+
508+
509+
510+
511+
public function multipleLinesSomeEmpty() {}
512+
}

src/Standards/PEAR/Tests/Commenting/FunctionCommentUnitTest.inc.fixed

+17-4
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,6 @@ class Something implements JsonSerializable {
453453
*
454454
* @return mixed
455455
*/
456-
457456
#[ReturnTypeWillChange]
458457
public function blankLineDetectionA() {}
459458

@@ -463,16 +462,30 @@ class Something implements JsonSerializable {
463462
* @return mixed
464463
*/
465464
#[ReturnTypeWillChange]
466-
467465
public function blankLineDetectionB() {}
468466

469467
/**
470468
* Blank line between both docblock and attribute and attribute and function declaration.
471469
*
472470
* @return mixed
473471
*/
474-
475472
#[ReturnTypeWillChange]
476-
477473
public function blankLineDetectionC() {}
478474
}
475+
476+
class SpacingAfter {
477+
/**
478+
* There are multiple blank lines between this comment and the next function.
479+
*
480+
* @return void
481+
*/
482+
public function multipleBlankLines() {}
483+
484+
/**
485+
* There are multiple blank lines, and some "empty" lines with only
486+
* spaces/tabs between this comment and the next function.
487+
*
488+
* @return void
489+
*/
490+
public function multipleLinesSomeEmpty() {}
491+
}

src/Standards/PEAR/Tests/Commenting/FunctionCommentUnitTest.php

+2
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,8 @@ public function getErrorList()
7373
455 => 1,
7474
464 => 1,
7575
473 => 1,
76+
485 => 1,
77+
501 => 1,
7678
];
7779

7880
}//end getErrorList()

0 commit comments

Comments
 (0)