Skip to content

Commit

Permalink
Fix up CS
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Oct 19, 2021
1 parent 47e09c0 commit 943eae4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions PSR2R/Sniffs/Commenting/DocBlockReturnTagSniff.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ public function __construct() {
* @return void
*/
protected function processTokenOutsideScope(File $phpcsFile, $stackPtr) {
// Nothing to do here.
}

/**
Expand Down Expand Up @@ -106,8 +107,6 @@ protected function processTokenWithinScope(File $phpcsFile, $stackPtr, $currScop
if ($phpcsFile->fixer->enabled === true) {
$phpcsFile->fixer->replaceToken($commentWithReturn, '');
}

return;
}
}

Expand Down
1 change: 1 addition & 0 deletions PSR2R/Sniffs/Methods/MethodDeclarationSniff.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ public function __construct() {
* @return void
*/
protected function processTokenOutsideScope(File $phpcsFile, $stackPtr) {
// Nothing to do here.
}

/**
Expand Down

0 comments on commit 943eae4

Please sign in to comment.