Patched to Drupal 8.4.8 level. See https://www.drupal.org/sa-core-2018-004 and patch...
[yaffs-website] / web / core / modules / content_moderation / src / Entity / ContentModerationStateInterface.php
1 <?php
2
3 namespace Drupal\content_moderation\Entity;
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  * @internal
15  */
16 interface ContentModerationStateInterface extends ContentEntityInterface, EntityOwnerInterface {
17
18 }