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

Breadcrumb

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

function NamespaceDeclarationSniff::process

Same name in this branch
  1. 11.1.x vendor/slevomat/coding-standard/SlevomatCodingStandard/Sniffs/Namespaces/NamespaceDeclarationSniff.php \SlevomatCodingStandard\Sniffs\Namespaces\NamespaceDeclarationSniff::process()

Processes this test, when one of its tokens is encountered.

Parameters

\PHP_CodeSniffer\Files\File $phpcsFile The file being scanned.:

int $stackPtr The position of the current token in: the stack passed in $tokens.

Return value

void

Overrides Sniff::process

File

vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Sniffs/Namespaces/NamespaceDeclarationSniff.php, line 41

Class

NamespaceDeclarationSniff

Namespace

PHP_CodeSniffer\Standards\PSR2\Sniffs\Namespaces

Code

public function process(File $phpcsFile, $stackPtr) {
    $tokens = $phpcsFile->getTokens();
    $nextNonEmpty = $phpcsFile->findNext(Tokens::$emptyTokens, $stackPtr + 1, null, true);
    if ($tokens[$nextNonEmpty]['code'] === T_NS_SEPARATOR) {
        // Namespace keyword as operator. Not a declaration.
        return;
    }
    $end = $phpcsFile->findEndOfStatement($stackPtr);
    for ($i = $end + 1; $i < $phpcsFile->numTokens - 1; $i++) {
        if ($tokens[$i]['line'] === $tokens[$end]['line']) {
            continue;
        }
        break;
    }
    // The $i var now points to the first token on the line after the
    // namespace declaration, which must be a blank line.
    $next = $phpcsFile->findNext(T_WHITESPACE, $i, $phpcsFile->numTokens, true);
    if ($next === false) {
        return;
    }
    $diff = $tokens[$next]['line'] - $tokens[$i]['line'];
    if ($diff === 1) {
        return;
    }
    if ($diff < 0) {
        $diff = 0;
    }
    $error = 'There must be one blank line after the namespace declaration';
    $fix = $phpcsFile->addFixableError($error, $stackPtr, 'BlankLineAfter');
    if ($fix === true) {
        if ($diff === 0) {
            $phpcsFile->fixer
                ->addNewlineBefore($i);
        }
        else {
            $phpcsFile->fixer
                ->beginChangeset();
            for ($x = $i; $x < $next; $x++) {
                if ($tokens[$x]['line'] === $tokens[$next]['line']) {
                    break;
                }
                $phpcsFile->fixer
                    ->replaceToken($x, '');
            }
            $phpcsFile->fixer
                ->addNewline($i);
            $phpcsFile->fixer
                ->endChangeset();
        }
    }
}
RSS feed
Powered by Drupal