comparison core/modules/content_moderation/src/Entity/ContentModerationStateInterface.php @ 0:c75dbcec494b

Initial commit from drush-created site
author Chris Cannam
date Thu, 05 Jul 2018 14:24:15 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:c75dbcec494b
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 }