Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. DisallowTrailingCommaInClosureUseSniff.php

class DisallowTrailingCommaInClosureUseSniff

Hierarchy

  • class \SlevomatCodingStandard\Sniffs\Functions\DisallowTrailingCommaInClosureUseSniff implements \PHP_CodeSniffer\Sniffs\Sniff

Expanded class hierarchy of DisallowTrailingCommaInClosureUseSniff

File

vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Functions/DisallowTrailingCommaInClosureUseSniff.php, line 14

Namespace

SlevomatCodingStandard\Sniffs\Functions
View source
class DisallowTrailingCommaInClosureUseSniff implements Sniff {
    public const CODE_DISALLOWED_TRAILING_COMMA = 'DisallowedTrailingComma';
    
    /** @var bool */
    public $onlySingleLine = false;
    
    /**
     * @return array<int, (int|string)>
     */
    public function register() : array {
        return [
            T_CLOSURE,
        ];
    }
    
    /**
     * @phpcsSuppress SlevomatCodingStandard.TypeHints.ParameterTypeHint.MissingNativeTypeHint
     * @param int $functionPointer
     */
    public function process(File $phpcsFile, $functionPointer) : void {
        $tokens = $phpcsFile->getTokens();
        $parenthesisCloserPointer = $tokens[$functionPointer]['parenthesis_closer'];
        $usePointer = TokenHelper::findNextEffective($phpcsFile, $parenthesisCloserPointer + 1);
        if ($tokens[$usePointer]['code'] !== T_USE) {
            return;
        }
        $useParenthesisOpenerPointer = TokenHelper::findNextEffective($phpcsFile, $usePointer + 1);
        $useParenthesisCloserPointer = $tokens[$useParenthesisOpenerPointer]['parenthesis_closer'];
        $pointerBeforeUseParenthesisCloser = TokenHelper::findPreviousExcluding($phpcsFile, T_WHITESPACE, $tokens[$useParenthesisOpenerPointer]['parenthesis_closer'] - 1, $useParenthesisOpenerPointer);
        if ($tokens[$pointerBeforeUseParenthesisCloser]['code'] !== T_COMMA) {
            return;
        }
        if ($this->onlySingleLine && $tokens[$useParenthesisOpenerPointer]['line'] !== $tokens[$useParenthesisCloserPointer]['line']) {
            return;
        }
        $fix = $phpcsFile->addFixableError('Trailing comma after the last inherited variable in "use" of closure declaration is disallowed.', $pointerBeforeUseParenthesisCloser, self::CODE_DISALLOWED_TRAILING_COMMA);
        if (!$fix) {
            return;
        }
        $phpcsFile->fixer
            ->beginChangeset();
        $phpcsFile->fixer
            ->replaceToken($pointerBeforeUseParenthesisCloser, '');
        if ($tokens[$pointerBeforeUseParenthesisCloser]['line'] === $tokens[$useParenthesisCloserPointer]['line']) {
            FixerHelper::removeBetween($phpcsFile, $pointerBeforeUseParenthesisCloser, $useParenthesisCloserPointer);
        }
        $phpcsFile->fixer
            ->endChangeset();
    }

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title
DisallowTrailingCommaInClosureUseSniff::$onlySingleLine public property @var bool
DisallowTrailingCommaInClosureUseSniff::CODE_DISALLOWED_TRAILING_COMMA public constant
DisallowTrailingCommaInClosureUseSniff::process public function * @phpcsSuppress SlevomatCodingStandard.TypeHints.ParameterTypeHint.MissingNativeTypeHint
*
Overrides Sniff::process
DisallowTrailingCommaInClosureUseSniff::register public function * Overrides Sniff::register

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal