true, \T_COMMA => true, \T_DOUBLE_ARROW => true, \T_SEMICOLON => true, ); /** * Returns an array of tokens this test wants to listen for. * * @since 7.0.0 * @since 8.2.0 Now registers all bitshift tokens, not just bitshift right (`T_SR`). * * @return array */ public function register() { return array( \T_SL, \T_SL_EQUAL, \T_SR, \T_SR_EQUAL, ); } /** * Processes this test, when one of its tokens is encountered. * * @since 7.0.0 * * @param \PHP_CodeSniffer_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) { if ($this->supportsAbove('7.0') === false) { return; } $tokens = $phpcsFile->getTokens(); // Determine the start and end of the part of the statement we need to examine. $start = ($stackPtr + 1); $next = $phpcsFile->findNext(Tokens::$emptyTokens, $start, null, true); if ($next !== false && $tokens[$next]['code'] === \T_OPEN_PARENTHESIS) { $start = ($next + 1); } $end = PHPCSHelper::findEndOfStatement($phpcsFile, $start); if (isset($this->inclusiveStopPoints[$tokens[$end]['code']]) === true) { --$end; } if ($this->isNegativeNumber($phpcsFile, $start, $end, true) !== true) { // Not a negative number or undetermined. return; } $phpcsFile->addError( 'Bitwise shifts by negative number will throw an ArithmeticError in PHP 7.0. Found: %s', $stackPtr, 'Found', array($phpcsFile->getTokensAsString($start, ($end - $start + 1))) ); } }