Neos\Neos\Service\VieSchemaBuilder::removeUndeclaredTypes PHP Метод

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

Cleans up all types which are not know in given configuration array
protected removeUndeclaredTypes ( array &$configuration ) : void
$configuration array
Результат void
    protected function removeUndeclaredTypes(array &$configuration)
    {
        foreach ($configuration as $index => $type) {
            if (!isset($this->types[$type])) {
                unset($configuration[$index]);
            }
        }
    }