public function Drupal_Sniffs_ControlStructures_ElseCatchNewlineSniff::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/ ElseCatchNewlineSniff.php, line 51
Class
- Drupal_Sniffs_ControlStructures_ElseCatchNewlineSniff
- Checks that else/elseif/catch statements start on a new line.
Code
public function process(PHP_CodeSniffer_File $phpcsFile, $stackPtr) {
$tokens = $phpcsFile
->getTokens();
$prevNonWhiteSpace = $phpcsFile
->findPrevious(PHP_CodeSniffer_Tokens::$emptyTokens, $stackPtr - 1, null, true);
if ($tokens[$prevNonWhiteSpace]['line'] === $tokens[$stackPtr]['line']) {
$error = '%s must start on a new line';
$data = array(
$tokens[$stackPtr]['content'],
);
$phpcsFile
->addError($error, $stackPtr, 'ElseNewline', $data);
}
}