diff --git a/Classes/Domain/NodeCreation/PropertiesAndReferences.php b/Classes/Domain/NodeCreation/PropertiesAndReferences.php index fd26a2b..de19bf4 100644 --- a/Classes/Domain/NodeCreation/PropertiesAndReferences.php +++ b/Classes/Domain/NodeCreation/PropertiesAndReferences.php @@ -28,6 +28,8 @@ public static function createFromArrayAndTypeDeclarations(array $propertiesAndRe $references = []; $properties = []; foreach ($propertiesAndReferences as $propertyName => $propertyValue) { + // TODO: remove the next line to initialise the nodeType, once https://github.com/neos/neos-development-collection/issues/4333 is fixed + $nodeType->getFullConfiguration(); $declaration = $nodeType->getPropertyType($propertyName); if ($declaration === 'reference' || $declaration === 'references') { $references[$propertyName] = $propertyValue;