You are here

public function Drupal_Sniffs_ControlStructures_ElseIfSniff::process in Coder 7.2

Processes this test, when one of its tokens is encountered.

Parameters

PHP_CodeSniffer_File $phpcsFile The file being scanned.:

int $stackPtr The position of the current token in the: stack passed in $tokens.

Return value

void

File

coder_sniffer/Drupal/Sniffs/ControlStructures/ElseIfSniff.php, line 56

Class

Drupal_Sniffs_ControlStructures_ElseIfSniff
Verifies that control statements conform to their coding standards.

Code

public function process(PHP_CodeSniffer_File $phpcsFile, $stackPtr) {
  $tokens = $phpcsFile
    ->getTokens();
  $nextNonWhiteSpace = $phpcsFile
    ->findNext(T_WHITESPACE, $stackPtr + 1, null, true, null, true);
  if ($tokens[$nextNonWhiteSpace]['code'] == T_IF) {
    $phpcsFile
      ->addError('Use "elseif" in place of "else if"', $nextNonWhiteSpace);
  }
}