klitsche/dog

View on GitHub
src/Analyzer/Rules/DocBlockParamDescriptionRule.php

Summary

Maintainability
A
45 mins
Test Coverage
A
95%
<?php

declare(strict_types=1);

namespace Klitsche\Dog\Analyzer\Rules;

use Klitsche\Dog\Analyzer\Rule;
use Klitsche\Dog\Elements\DocBlockAwareInterface;
use Klitsche\Dog\Elements\ElementInterface;
use phpDocumentor\Reflection\DocBlock;

/**
 * @link https://github.com/php-fig/fig-standards/blob/master/proposed/phpdoc-tags.md#59-param
 * @link https://docs.phpdoc.org/latest/guide/references/phpdoc/tags/param.html
 */
class DocBlockParamDescriptionRule extends Rule
{
    public function analyze(ElementInterface $element): iterable
    {
        if ($element instanceof DocBlockAwareInterface
            && $element->hasDocBlock() === true
            && $element->getDocBlock()->hasTag('param') === true
        ) {
            foreach ($element->getDocBlock()->getTagsByName('param') as $tag) {
                if (
                    $tag instanceof DocBlock\Tags\Param
                    && (string) $tag->getDescription() === ''
                ) {
                    yield $this->createIssue(
                        $element,
                        sprintf(
                            '@param description for Argument %s in DocBlock for %s %s not found',
                            $tag->getVariableName(),
                            $element->getElementType(),
                            $element->getId(),
                        ),
                        $element->getDocBlock()->getLocation()
                            ? $element->getDocBlock()->getLocation()->getLineNumber()
                            : 1
                    );
                }
            }
        }

        yield from [];
    }
}