Upgraded drupal core with security updates
[yaffs-website] / web / core / modules / content_moderation / src / ContentModerationStateInterface.php
1 <?php
2
3 namespace Drupal\content_moderation;
4
5 use Drupal\Core\Entity\ContentEntityInterface;
6 use Drupal\user\EntityOwnerInterface;
7
8 /**
9  * An interface for Content moderation state entity.
10  *
11  * Content moderation state entities track the moderation state of other content
12  * entities.
13  */
14 interface ContentModerationStateInterface extends ContentEntityInterface, EntityOwnerInterface {
15
16 }