Neos\Flow\Reflection\ReflectionService::buildClassSchemata PHP 메소드

buildClassSchemata() 보호된 메소드

Builds class schemata from classes annotated as entities or value objects
protected buildClassSchemata ( array $classNames ) : void
$classNames array
리턴 void
    protected function buildClassSchemata(array $classNames)
    {
        foreach ($classNames as $className) {
            $this->classSchemata[$className] = $this->buildClassSchema($className);
        }
        $this->completeRepositoryAssignments();
        $this->ensureAggregateRootInheritanceChainConsistency();
    }
ReflectionService