Skip to content
Snippets Groups Projects
Commit 695e2c1b authored by Mikael Meulle's avatar Mikael Meulle
Browse files

Issue #3477296 by just_like_good_vibes, miiimooo:...

Issue #3477296 by just_like_good_vibes, miiimooo: getEntityFieldStorageMetadata(): $entity_field_map must be of type array, null given
parent c274b8ec
No related branches found
No related tags found
1 merge request!244[2.0.0-beta4] getEntityFieldStorageMetadata(): $entity_field_map must be of type array, null given
Pipeline #311392 passed
......@@ -316,6 +316,9 @@ abstract class EntityFieldSourceDeriverBase extends DeriverBase implements Conta
continue;
}
$entity_field_map = $all_entity_field_map[$entity_type_id];
if (!is_array($entity_field_map)) {
continue;
}
$entityFieldsClassification = $this->getEntityFieldsClassification($entity_type_definition);
$field_storage_definitions = $this->entityFieldManager->getFieldStorageDefinitions($entity_type_id);
$fields_metadata[$entity_type_id]["field_storages"] = $this->getEntityFieldStorageMetadata($field_storage_definitions, $entity_field_map, $entityFieldsClassification);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment