supportsBelow('7.2') === false) { return; } $tokens = $phpcsFile->getTokens(); $nextNonEmpty = $phpcsFile->findNext(Tokens::$emptyTokens, ($stackPtr + 1), null, true); if ($tokens[$nextNonEmpty]['code'] !== \T_OPEN_PARENTHESIS || isset($tokens[$nextNonEmpty]['parenthesis_closer']) === false ) { return; } if ($tokens[$stackPtr]['code'] === \T_STRING) { $ignore = array( \T_FUNCTION => true, \T_CONST => true, \T_USE => true, ); $prevNonEmpty = $phpcsFile->findPrevious(Tokens::$emptyTokens, ($stackPtr - 1), null, true); if (isset($ignore[$tokens[$prevNonEmpty]['code']]) === true) { // Not a function call. return; } } $closer = $tokens[$nextNonEmpty]['parenthesis_closer']; $lastInParenthesis = $phpcsFile->findPrevious(Tokens::$emptyTokens, ($closer - 1), $nextNonEmpty, true); if ($tokens[$lastInParenthesis]['code'] !== \T_COMMA) { return; } $data = array(); switch ($tokens[$stackPtr]['code']) { case \T_ISSET: $data[] = 'calls to isset()'; $errorCode = 'FoundInIsset'; break; case \T_UNSET: $data[] = 'calls to unset()'; $errorCode = 'FoundInUnset'; break; default: $data[] = 'function calls'; $errorCode = 'FoundInFunctionCall'; break; } $phpcsFile->addError( 'Trailing comma\'s are not allowed in %s in PHP 7.2 or earlier', $lastInParenthesis, $errorCode, $data ); } }