view core/modules/content_moderation/src/Entity/ContentModerationStateInterface.php @ 0:4c8ae668cc8c

Initial import (non-working)
author Chris Cannam
date Wed, 29 Nov 2017 16:09:58 +0000
parents
children
line wrap: on
line source
<?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 {

}