PostStatementCommentSniff.php in Coder 8.2
File
coder_sniffer/Drupal/Sniffs/Commenting/PostStatementCommentSniff.php
View source
<?php
namespace Drupal\Sniffs\Commenting;
use PHP_CodeSniffer\Files\File;
use PHP_CodeSniffer\Sniffs\Sniff;
class PostStatementCommentSniff implements Sniff {
public $supportedTokenizers = array(
'PHP',
);
public function register() {
return array(
T_COMMENT,
);
}
public function process(File $phpcsFile, $stackPtr) {
$tokens = $phpcsFile
->getTokens();
if (substr($tokens[$stackPtr]['content'], 0, 2) !== '//') {
return;
}
$commentLine = $tokens[$stackPtr]['line'];
$lastContent = $phpcsFile
->findPrevious(T_WHITESPACE, $stackPtr - 1, null, true);
if ($tokens[$lastContent]['line'] !== $commentLine) {
return;
}
if ($tokens[$lastContent]['code'] === T_CLOSE_CURLY_BRACKET) {
return;
}
if ($tokens[$lastContent]['code'] === T_COMMA || $tokens[$lastContent]['code'] === T_SEMICOLON) {
$lastContent = $phpcsFile
->findPrevious(T_WHITESPACE, $lastContent - 1, null, true);
if ($tokens[$lastContent]['code'] === T_CLOSE_CURLY_BRACKET) {
return;
}
}
$error = 'Comments may not appear after statements';
$fix = $phpcsFile
->addFixableError($error, $stackPtr, 'Found');
if ($fix === true) {
if ($tokens[$lastContent]['code'] === T_OPEN_TAG) {
$phpcsFile->fixer
->addNewlineBefore($stackPtr);
return;
}
$lineStart = $stackPtr;
while ($tokens[$lineStart]['line'] === $tokens[$stackPtr]['line'] && $tokens[$lineStart]['code'] !== T_OPEN_TAG) {
$lineStart--;
}
$phpcsFile->fixer
->beginChangeset();
$phpcsFile->fixer
->addContent($lineStart, $tokens[$stackPtr]['content']);
$phpcsFile->fixer
->replaceToken($stackPtr, $phpcsFile->eolChar);
$phpcsFile->fixer
->endChangeset();
}
}
}