View source
<?php
namespace Drupal\Sniffs\WhiteSpace;
use PHP_CodeSniffer\Files\File;
use PHP_CodeSniffer\Sniffs\Sniff;
use PHP_CodeSniffer\Util\Tokens;
class ScopeClosingBraceSniff implements Sniff {
public $indent = 2;
public function register() {
return Tokens::$scopeOpeners;
}
public function process(File $phpcsFile, $stackPtr) {
$tokens = $phpcsFile
->getTokens();
if (isset($tokens[$stackPtr]['scope_closer']) === false) {
return;
}
$scopeStart = $tokens[$stackPtr]['scope_opener'];
$scopeEnd = $tokens[$stackPtr]['scope_closer'];
if (isset($tokens[$scopeEnd]['scope_condition']) === false || $tokens[$scopeEnd]['scope_condition'] !== $stackPtr) {
return;
}
$lineStart = $stackPtr - 1;
for ($lineStart; $lineStart > 0; $lineStart--) {
if (strpos($tokens[$lineStart]['content'], $phpcsFile->eolChar) !== false) {
break;
}
}
$lineStart++;
$startColumn = 1;
if ($tokens[$lineStart]['code'] === T_WHITESPACE) {
$startColumn = $tokens[$lineStart + 1]['column'];
}
else {
if ($tokens[$lineStart]['code'] === T_INLINE_HTML) {
$trimmed = ltrim($tokens[$lineStart]['content']);
if ($trimmed === '') {
$startColumn = $tokens[$lineStart + 1]['column'];
}
else {
$startColumn = strlen($tokens[$lineStart]['content']) - strlen($trimmed);
}
}
}
$lastContent = $phpcsFile
->findPrevious(array(
T_WHITESPACE,
T_INLINE_HTML,
T_OPEN_TAG,
), $scopeEnd - 1, $scopeStart, true);
if ($tokens[$lastContent]['line'] === $tokens[$scopeEnd]['line']) {
if ($tokens[$tokens[$scopeEnd]['scope_condition']]['code'] !== T_CLASS && $tokens[$tokens[$scopeEnd]['scope_condition']]['code'] !== T_INTERFACE && in_array(T_CLASS, $tokens[$scopeEnd]['conditions']) === false && in_array(T_INTERFACE, $tokens[$scopeEnd]['conditions']) === false || $tokens[$lastContent]['code'] !== T_OPEN_CURLY_BRACKET) {
$error = 'Closing brace must be on a line by itself';
$fix = $phpcsFile
->addFixableError($error, $scopeEnd, 'Line');
if ($fix === true) {
$phpcsFile->fixer
->addNewlineBefore($scopeEnd);
}
}
return;
}
$lineStart = $scopeEnd - 1;
for ($lineStart; $lineStart > 0; $lineStart--) {
if (strpos($tokens[$lineStart]['content'], $phpcsFile->eolChar) !== false) {
break;
}
}
$lineStart++;
$braceIndent = 0;
if ($tokens[$lineStart]['code'] === T_WHITESPACE) {
$braceIndent = $tokens[$lineStart + 1]['column'] - 1;
}
else {
if ($tokens[$lineStart]['code'] === T_INLINE_HTML) {
$trimmed = ltrim($tokens[$lineStart]['content']);
if ($trimmed === '') {
$braceIndent = $tokens[$lineStart + 1]['column'] - 1;
}
else {
$braceIndent = strlen($tokens[$lineStart]['content']) - strlen($trimmed) - 1;
}
}
}
$fix = false;
if ($tokens[$stackPtr]['code'] === T_CASE || $tokens[$stackPtr]['code'] === T_DEFAULT) {
$expectedIndent = $startColumn + $this->indent - 1;
if ($braceIndent !== $expectedIndent) {
$error = 'Case breaking statement indented incorrectly; expected %s spaces, found %s';
$data = array(
$expectedIndent,
$braceIndent,
);
$fix = $phpcsFile
->addFixableError($error, $scopeEnd, 'BreakIndent', $data);
}
}
else {
$expectedIndent = $startColumn - 1;
if ($braceIndent !== $expectedIndent) {
$error = 'Closing brace indented incorrectly; expected %s spaces, found %s';
$data = array(
$expectedIndent,
$braceIndent,
);
$fix = $phpcsFile
->addFixableError($error, $scopeEnd, 'Indent', $data);
}
}
if ($fix === true) {
$spaces = str_repeat(' ', $expectedIndent);
if ($braceIndent === 0) {
$phpcsFile->fixer
->addContentBefore($lineStart, $spaces);
}
else {
$phpcsFile->fixer
->replaceToken($lineStart, ltrim($tokens[$lineStart]['content']));
$phpcsFile->fixer
->addContentBefore($lineStart, $spaces);
}
}
}
}