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

Breadcrumb

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

class DocCommentLongArraySyntaxSniff

Ensures @code annotations in doc blocks don't contain long array syntax.

@category PHP @package PHP_CodeSniffer @link http://pear.php.net/package/PHP_CodeSniffer

Hierarchy

  • class \Drupal\Sniffs\Commenting\DocCommentLongArraySyntaxSniff implements \PHP_CodeSniffer\Sniffs\Sniff

Expanded class hierarchy of DocCommentLongArraySyntaxSniff

File

vendor/drupal/coder/coder_sniffer/Drupal/Sniffs/Commenting/DocCommentLongArraySyntaxSniff.php, line 22

Namespace

Drupal\Sniffs\Commenting
View source
class DocCommentLongArraySyntaxSniff implements Sniff {
    
    /**
     * Returns an array of tokens this test wants to listen for.
     *
     * @return array<int|string>
     */
    public function register() {
        return [
            T_DOC_COMMENT_OPEN_TAG,
        ];
    }
    
    //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();
        $commentEnd = $phpcsFile->findNext(T_DOC_COMMENT_CLOSE_TAG, $stackPtr + 1);
        // Look for @code annotations.
        $codeEnd = $stackPtr;
        do {
            $codeStart = $phpcsFile->findNext(T_DOC_COMMENT_TAG, $codeEnd + 1, $commentEnd, false, '@code');
            if ($codeStart !== false) {
                $codeEnd = $phpcsFile->findNext(T_DOC_COMMENT_TAG, $codeStart + 1, $commentEnd, false, '@endcode');
                // If the code block never ends then simply ignore this
                // docblock, it is probably malformed.
                if ($codeEnd === false) {
                    break;
                }
                else {
                    // Check for long array syntax use inside this @code annotation.
                    for ($i = $codeStart + 1; $i < $codeEnd; $i++) {
                        if (preg_match('/\\barray\\s*\\(/', $tokens[$i]['content']) === 1) {
                            $error = 'Long array syntax must not be used in doc comment code annotations';
                            $phpcsFile->addError($error, $i, 'DocLongArray');
                        }
                    }
                }
            }
        } while ($codeStart !== false);
    }
    
    //end process()

}

Members

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