Hello,

In eck_entity_property_info_alter(), where plugins gather all "property_info" implementation there is an important information missing, the entity type. Can we add the entity type in context?

function eck_entity_property_info_alter(&$info) {
  foreach (EntityType::loadAll() as $entity_type) {
    $entity_property_info = $info[$entity_type->name];
    $entity_property_info = eck_property_behavior_invoke_plugin_alter($entity_type, 'property_info', $entity_property_info);