Version 1
[yaffs-website] / web / modules / contrib / metatag / src / Plugin / DataType / MetatagInterface.php
diff --git a/web/modules/contrib/metatag/src/Plugin/DataType/MetatagInterface.php b/web/modules/contrib/metatag/src/Plugin/DataType/MetatagInterface.php
new file mode 100644 (file)
index 0000000..5d41d28
--- /dev/null
@@ -0,0 +1,14 @@
+<?php
+
+namespace Drupal\metatag\Plugin\DataType;
+
+use Drupal\Core\TypedData\PrimitiveInterface;
+
+/**
+ * The metatag data type.
+ *
+ * The plain value of a metatag is a serialized object represented as a string.
+ */
+interface MetatagInterface extends PrimitiveInterface {
+
+}