class CloseBracketSpacingSniff in Coder 8.3.x
Same name and namespace in other branches
- 8.3 coder_sniffer/Drupal/Sniffs/WhiteSpace/CloseBracketSpacingSniff.php \Drupal\Sniffs\WhiteSpace\CloseBracketSpacingSniff
- 8.2 coder_sniffer/Drupal/Sniffs/WhiteSpace/CloseBracketSpacingSniff.php \Drupal\Sniffs\WhiteSpace\CloseBracketSpacingSniff
Checks that there is no white space before a closing bracket, for ")" and "}". Square Brackets are handled by \PHP_CodeSniffer\Standards\Squiz\Sniffs\Arrays\ArrayBracketSpacingSniff.
@category PHP @package PHP_CodeSniffer @link http://pear.php.net/package/PHP_CodeSniffer
Hierarchy
- class \Drupal\Sniffs\WhiteSpace\CloseBracketSpacingSniff implements \PHP_CodeSniffer\Sniffs\Sniff
Expanded class hierarchy of CloseBracketSpacingSniff
File
- coder_sniffer/
Drupal/ Sniffs/ WhiteSpace/ CloseBracketSpacingSniff.php, line 25
Namespace
Drupal\Sniffs\WhiteSpaceView source
class CloseBracketSpacingSniff implements Sniff {
/**
* Returns an array of tokens this test wants to listen for.
*
* @return array<int|string>
*/
public function register() {
return [
T_CLOSE_CURLY_BRACKET,
T_CLOSE_PARENTHESIS,
T_CLOSE_SHORT_ARRAY,
];
}
//end register()
/**
* Processes this test, when one of its tokens is encountered.
*
* @param \PHP_CodeSniffer\Files\File $phpcsFile The file being scanned.
* @param int $stackPtr The position of the current token
* in the stack passed in $tokens.
*
* @return void
*/
public function process(File $phpcsFile, $stackPtr) {
$tokens = $phpcsFile
->getTokens();
// Ignore curly brackets in javascript files.
if ($tokens[$stackPtr]['code'] === T_CLOSE_CURLY_BRACKET && $phpcsFile->tokenizerType === 'JS') {
return;
}
if (isset($tokens[$stackPtr - 1]) === true && $tokens[$stackPtr - 1]['code'] === T_WHITESPACE) {
$before = $phpcsFile
->findPrevious(Tokens::$emptyTokens, $stackPtr - 1, null, true);
if ($before !== false && $tokens[$stackPtr]['line'] === $tokens[$before]['line']) {
$error = 'There should be no white space before a closing "%s"';
$fix = $phpcsFile
->addFixableError($error, $stackPtr - 1, 'ClosingWhitespace', [
$tokens[$stackPtr]['content'],
]);
if ($fix === true) {
$phpcsFile->fixer
->replaceToken($stackPtr - 1, '');
}
}
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CloseBracketSpacingSniff:: |
public | function | Processes this test, when one of its tokens is encountered. | |
CloseBracketSpacingSniff:: |
public | function | Returns an array of tokens this test wants to listen for. |