Neos\Flow\Reflection\ReflectionService::buildClassSchemata PHP Method

buildClassSchemata() protected method

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