Neos\Flow\Reflection\ReflectionService::addParentClass PHP Méthode

addParentClass() protected méthode

protected addParentClass ( string $className, ClassReflection $parentClass ) : void
$className string
$parentClass ClassReflection
Résultat void
    protected function addParentClass($className, ClassReflection $parentClass)
    {
        $parentClassName = $parentClass->getName();
        if (!isset($this->classReflectionData[$parentClassName])) {
            $this->reflectClass($parentClassName);
        }
        $this->classReflectionData[$parentClassName][self::DATA_CLASS_SUBCLASSES][$className] = true;
    }
ReflectionService