Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / content_moderation / src / Entity / ContentModerationStateInterface.php
diff --git a/web/core/modules/content_moderation/src/Entity/ContentModerationStateInterface.php b/web/core/modules/content_moderation/src/Entity/ContentModerationStateInterface.php
new file mode 100644 (file)
index 0000000..bd31360
--- /dev/null
@@ -0,0 +1,18 @@
+<?php
+
+namespace Drupal\content_moderation\Entity;
+
+use Drupal\Core\Entity\ContentEntityInterface;
+use Drupal\user\EntityOwnerInterface;
+
+/**
+ * An interface for Content moderation state entity.
+ *
+ * Content moderation state entities track the moderation state of other content
+ * entities.
+ *
+ * @internal
+ */
+interface ContentModerationStateInterface extends ContentEntityInterface, EntityOwnerInterface {
+
+}