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

Breadcrumb

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

function VariableCommentSniff::processMemberVar

Same name in this branch
  1. 11.1.x vendor/drupal/coder/coder_sniffer/Drupal/Sniffs/Commenting/VariableCommentSniff.php \Drupal\Sniffs\Commenting\VariableCommentSniff::processMemberVar()

Called to process class member vars.

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 AbstractVariableSniff::processMemberVar

File

vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Commenting/VariableCommentSniff.php, line 29

Class

VariableCommentSniff

Namespace

PHP_CodeSniffer\Standards\Squiz\Sniffs\Commenting

Code

public function processMemberVar(File $phpcsFile, $stackPtr) {
    $tokens = $phpcsFile->getTokens();
    $ignore = [
        T_PUBLIC => T_PUBLIC,
        T_PRIVATE => T_PRIVATE,
        T_PROTECTED => T_PROTECTED,
        T_VAR => T_VAR,
        T_STATIC => T_STATIC,
        T_READONLY => T_READONLY,
        T_WHITESPACE => T_WHITESPACE,
        T_STRING => T_STRING,
        T_NS_SEPARATOR => T_NS_SEPARATOR,
        T_NAMESPACE => T_NAMESPACE,
        T_NULLABLE => T_NULLABLE,
        T_TYPE_UNION => T_TYPE_UNION,
        T_TYPE_INTERSECTION => T_TYPE_INTERSECTION,
        T_NULL => T_NULL,
        T_TRUE => T_TRUE,
        T_FALSE => T_FALSE,
        T_SELF => T_SELF,
        T_PARENT => T_PARENT,
    ];
    for ($commentEnd = $stackPtr - 1; $commentEnd >= 0; $commentEnd--) {
        if (isset($ignore[$tokens[$commentEnd]['code']]) === true) {
            continue;
        }
        if ($tokens[$commentEnd]['code'] === T_ATTRIBUTE_END && isset($tokens[$commentEnd]['attribute_opener']) === true) {
            $commentEnd = $tokens[$commentEnd]['attribute_opener'];
            continue;
        }
        break;
    }
    if ($commentEnd === false || $tokens[$commentEnd]['code'] !== T_DOC_COMMENT_CLOSE_TAG && $tokens[$commentEnd]['code'] !== T_COMMENT) {
        $phpcsFile->addError('Missing member variable doc comment', $stackPtr, 'Missing');
        return;
    }
    if ($tokens[$commentEnd]['code'] === T_COMMENT) {
        $phpcsFile->addError('You must use "/**" style comments for a member variable comment', $stackPtr, 'WrongStyle');
        return;
    }
    $commentStart = $tokens[$commentEnd]['comment_opener'];
    $foundVar = null;
    foreach ($tokens[$commentStart]['comment_tags'] as $tag) {
        if ($tokens[$tag]['content'] === '@var') {
            if ($foundVar !== null) {
                $error = 'Only one @var tag is allowed in a member variable comment';
                $phpcsFile->addError($error, $tag, 'DuplicateVar');
            }
            else {
                $foundVar = $tag;
            }
        }
        else {
            if ($tokens[$tag]['content'] === '@see') {
                // Make sure the tag isn't empty.
                $string = $phpcsFile->findNext(T_DOC_COMMENT_STRING, $tag, $commentEnd);
                if ($string === false || $tokens[$string]['line'] !== $tokens[$tag]['line']) {
                    $error = 'Content missing for @see tag in member variable comment';
                    $phpcsFile->addError($error, $tag, 'EmptySees');
                }
            }
            else {
                $error = '%s tag is not allowed in member variable comment';
                $data = [
                    $tokens[$tag]['content'],
                ];
                $phpcsFile->addWarning($error, $tag, 'TagNotAllowed', $data);
            }
        }
        
        //end if
    }
    
    //end foreach
    // The @var tag is the only one we require.
    if ($foundVar === null) {
        $error = 'Missing @var tag in member variable comment';
        $phpcsFile->addError($error, $commentEnd, 'MissingVar');
        return;
    }
    $firstTag = $tokens[$commentStart]['comment_tags'][0];
    if ($foundVar !== null && $tokens[$firstTag]['content'] !== '@var') {
        $error = 'The @var tag must be the first tag in a member variable comment';
        $phpcsFile->addError($error, $foundVar, 'VarOrder');
    }
    // Make sure the tag isn't empty and has the correct padding.
    $string = $phpcsFile->findNext(T_DOC_COMMENT_STRING, $foundVar, $commentEnd);
    if ($string === false || $tokens[$string]['line'] !== $tokens[$foundVar]['line']) {
        $error = 'Content missing for @var tag in member variable comment';
        $phpcsFile->addError($error, $foundVar, 'EmptyVar');
        return;
    }
    // Support both a var type and a description.
    preg_match('`^((?:\\|?(?:array\\([^\\)]*\\)|[\\\\a-z0-9\\[\\]]+))*)( .*)?`i', $tokens[$foundVar + 2]['content'], $varParts);
    if (isset($varParts[1]) === false) {
        return;
    }
    $varType = $varParts[1];
    // Check var type (can be multiple, separated by '|').
    $typeNames = explode('|', $varType);
    $suggestedNames = [];
    foreach ($typeNames as $typeName) {
        $suggestedName = Common::suggestType($typeName);
        if (in_array($suggestedName, $suggestedNames, true) === false) {
            $suggestedNames[] = $suggestedName;
        }
    }
    $suggestedType = implode('|', $suggestedNames);
    if ($varType !== $suggestedType) {
        $error = 'Expected "%s" but found "%s" for @var tag in member variable comment';
        $data = [
            $suggestedType,
            $varType,
        ];
        $fix = $phpcsFile->addFixableError($error, $foundVar, 'IncorrectVarType', $data);
        if ($fix === true) {
            $replacement = $suggestedType;
            if (empty($varParts[2]) === false) {
                $replacement .= $varParts[2];
            }
            $phpcsFile->fixer
                ->replaceToken($foundVar + 2, $replacement);
            unset($replacement);
        }
    }
}

API Navigation

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