Skip to content

Commit 943eae4

Browse files
committed
Fix up CS
1 parent 47e09c0 commit 943eae4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

PSR2R/Sniffs/Commenting/DocBlockReturnTagSniff.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ public function __construct() {
2929
* @return void
3030
*/
3131
protected function processTokenOutsideScope(File $phpcsFile, $stackPtr) {
32+
// Nothing to do here.
3233
}
3334

3435
/**
@@ -106,8 +107,6 @@ protected function processTokenWithinScope(File $phpcsFile, $stackPtr, $currScop
106107
if ($phpcsFile->fixer->enabled === true) {
107108
$phpcsFile->fixer->replaceToken($commentWithReturn, '');
108109
}
109-
110-
return;
111110
}
112111
}
113112

PSR2R/Sniffs/Methods/MethodDeclarationSniff.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ public function __construct() {
4242
* @return void
4343
*/
4444
protected function processTokenOutsideScope(File $phpcsFile, $stackPtr) {
45+
// Nothing to do here.
4546
}
4647

4748
/**

0 commit comments

Comments
 (0)