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

Breadcrumb

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

class ClosingDeclarationCommentSniff

Hierarchy

  • class \PHP_CodeSniffer\Standards\Squiz\Sniffs\Commenting\ClosingDeclarationCommentSniff implements \PHP_CodeSniffer\Sniffs\Sniff

Expanded class hierarchy of ClosingDeclarationCommentSniff

File

vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Commenting/ClosingDeclarationCommentSniff.php, line 15

Namespace

PHP_CodeSniffer\Standards\Squiz\Sniffs\Commenting
View source
class ClosingDeclarationCommentSniff implements Sniff {
    
    /**
     * Returns an array of tokens this test wants to listen for.
     *
     * @return array<int|string>
     */
    public function register() {
        return [
            T_CLASS,
            T_ENUM,
            T_FUNCTION,
            T_INTERFACE,
            T_TRAIT,
        ];
    }
    
    //end register()
    
    /**
     * Processes this test, when one of its tokens is encountered.
     *
     * @param \PHP_CodeSniffer\Files\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) {
        $tokens = $phpcsFile->getTokens();
        if ($tokens[$stackPtr]['code'] === T_FUNCTION) {
            $methodProps = $phpcsFile->getMethodProperties($stackPtr);
            // Abstract methods do not require a closing comment.
            if ($methodProps['is_abstract'] === true) {
                return;
            }
            // If this function is in an interface then we don't require
            // a closing comment.
            if ($phpcsFile->hasCondition($stackPtr, T_INTERFACE) === true) {
                return;
            }
            if (isset($tokens[$stackPtr]['scope_closer']) === false) {
                $error = 'Possible parse error: non-abstract method defined as abstract';
                $phpcsFile->addWarning($error, $stackPtr, 'Abstract');
                return;
            }
            $decName = $phpcsFile->getDeclarationName($stackPtr);
            $comment = '//end ' . $decName . '()';
        }
        else {
            if ($tokens[$stackPtr]['code'] === T_CLASS) {
                $comment = '//end class';
            }
            else {
                if ($tokens[$stackPtr]['code'] === T_INTERFACE) {
                    $comment = '//end interface';
                }
                else {
                    if ($tokens[$stackPtr]['code'] === T_TRAIT) {
                        $comment = '//end trait';
                    }
                    else {
                        $comment = '//end enum';
                    }
                }
            }
        }
        
        //end if
        if (isset($tokens[$stackPtr]['scope_closer']) === false) {
            $error = 'Possible parse error: %s missing opening or closing brace';
            $data = [
                $tokens[$stackPtr]['content'],
            ];
            $phpcsFile->addWarning($error, $stackPtr, 'MissingBrace', $data);
            return;
        }
        $closingBracket = $tokens[$stackPtr]['scope_closer'];
        $data = [
            $comment,
        ];
        if (isset($tokens[$closingBracket + 1]) === false || $tokens[$closingBracket + 1]['code'] !== T_COMMENT) {
            $next = $phpcsFile->findNext(T_WHITESPACE, $closingBracket + 1, null, true);
            if ($next !== false && rtrim($tokens[$next]['content']) === $comment) {
                // The comment isn't really missing; it is just in the wrong place.
                $fix = $phpcsFile->addFixableError('Expected %s directly after closing brace', $closingBracket, 'Misplaced', $data);
                if ($fix === true) {
                    $phpcsFile->fixer
                        ->beginChangeset();
                    for ($i = $closingBracket + 1; $i < $next; $i++) {
                        $phpcsFile->fixer
                            ->replaceToken($i, '');
                    }
                    // Just in case, because indentation fixes can add indents onto
                    // these comments and cause us to be unable to fix them.
                    $phpcsFile->fixer
                        ->replaceToken($next, $comment . $phpcsFile->eolChar);
                    $phpcsFile->fixer
                        ->endChangeset();
                }
            }
            else {
                $fix = $phpcsFile->addFixableError('Expected %s', $closingBracket, 'Missing', $data);
                if ($fix === true) {
                    $phpcsFile->fixer
                        ->replaceToken($closingBracket, '}' . $comment);
                }
            }
            return;
        }
        
        //end if
        if (rtrim($tokens[$closingBracket + 1]['content']) !== $comment) {
            $fix = $phpcsFile->addFixableError('Expected %s', $closingBracket, 'Incorrect', $data);
            if ($fix === true) {
                $phpcsFile->fixer
                    ->replaceToken($closingBracket + 1, $comment . $phpcsFile->eolChar);
            }
            return;
        }
    }
    
    //end process()

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title
ClosingDeclarationCommentSniff::process public function Processes this test, when one of its tokens is encountered. Overrides Sniff::process
ClosingDeclarationCommentSniff::register public function Returns an array of tokens this test wants to listen for. Overrides Sniff::register
RSS feed
Powered by Drupal