diff --git a/src/FieldMapperInterface.php b/src/FieldMapperInterface.php index 8901d8a..c484e1b 100644 --- a/src/FieldMapperInterface.php +++ b/src/FieldMapperInterface.php @@ -2,6 +2,9 @@ namespace Drupal\iiif_presentation_api; +/** + * Generic service interface in which to build out a mapping. + */ interface FieldMapperInterface { /** @@ -35,4 +38,5 @@ public function getMapping() : array; * TRUE if present; otherwise, FALSE. */ public function isInMapping(string $entity_type_id, string $field_name) : bool; + }