You are here

class CloseBracketSpacingSniff in Coder 8.2

Same name and namespace in other branches
  1. 8.3 coder_sniffer/Drupal/Sniffs/WhiteSpace/CloseBracketSpacingSniff.php \Drupal\Sniffs\WhiteSpace\CloseBracketSpacingSniff
  2. 8.3.x 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

Expanded class hierarchy of CloseBracketSpacingSniff

File

coder_sniffer/Drupal/Sniffs/WhiteSpace/CloseBracketSpacingSniff.php, line 25

Namespace

Drupal\Sniffs\WhiteSpace
View source
class CloseBracketSpacingSniff implements Sniff {

  /**
   * A list of tokenizers this sniff supports.
   *
   * @var array
   */
  public $supportedTokenizers = array(
    'PHP',
    'JS',
  );

  /**
   * Returns an array of tokens this test wants to listen for.
   *
   * @return array
   */
  public function register() {
    return array(
      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', array(
          $tokens[$stackPtr]['content'],
        ));
        if ($fix === true) {
          $phpcsFile->fixer
            ->replaceToken($stackPtr - 1, '');
        }
      }
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
CloseBracketSpacingSniff::$supportedTokenizers public property A list of tokenizers this sniff supports.
CloseBracketSpacingSniff::process public function Processes this test, when one of its tokens is encountered.
CloseBracketSpacingSniff::register public function Returns an array of tokens this test wants to listen for.