public functiongetExtraFields($entity_type_id, $bundle) {
$this->extraFields ??= $this->loadExtraFields();
// Read from the "static" cache.// Return an empty fallback if the bundle has no extra fields.return$this->extraFields[$entity_type_id][$bundle] ?? [
'form' => [],
'display' => [],
];
}