ApiGen\Generator\TemplateGenerators\TreeGenerator::canBeProcessed PHP Метод

canBeProcessed() приватный метод

private canBeProcessed ( ApiGen\Contracts\Parser\Reflection\ClassReflectionInterface $reflection ) : boolean
$reflection ApiGen\Contracts\Parser\Reflection\ClassReflectionInterface
Результат boolean
    private function canBeProcessed(ClassReflectionInterface $reflection)
    {
        if (!$reflection->isMain()) {
            return false;
        }
        if (!$reflection->isDocumented()) {
            return false;
        }
        if (isset($this->processed[$reflection->getName()])) {
            return false;
        }
        return true;
    }