From 34d6b975c63c2ba878beebd3303c0086fd0e33db Mon Sep 17 00:00:00 2001 From: Adam Vessey Date: Fri, 23 Feb 2024 15:01:08 -0400 Subject: [PATCH] Coding standards. --- src/FieldMapperInterface.php | 4 ++++ 1 file changed, 4 insertions(+) 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; + }