Neos\Flow\Reflection\ReflectionService::addImplementedInterface PHP Метод

addImplementedInterface() защищенный Метод

protected addImplementedInterface ( string $className, ClassReflection $interface )
$className string
$interface ClassReflection
    protected function addImplementedInterface($className, ClassReflection $interface)
    {
        if (isset($this->classReflectionData[$className][self::DATA_CLASS_ABSTRACT])) {
            return;
        }
        $interfaceName = $interface->getName();
        if (!isset($this->classReflectionData[$interfaceName])) {
            $this->reflectClass($interfaceName);
        }
        $this->classReflectionData[$interfaceName][self::DATA_INTERFACE_IMPLEMENTATIONS][$className] = true;
    }
ReflectionService