You are here

ConfigEntityRevisionsEntityInterface.php in Config Entity Revisions 8

Same filename and directory in other branches
  1. 1.x src/ConfigEntityRevisionsEntityInterface.php

File

src/ConfigEntityRevisionsEntityInterface.php
View source
<?php

namespace Drupal\config_entity_revisions;

use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\Core\Entity\EntityChangedInterface;
use Drupal\Core\Entity\RevisionLogInterface;
use Drupal\Core\Entity\EntityPublishedInterface;

/**
 * Provides an interface defining a config entity revisions entity.
 */
interface ConfigEntityRevisionsEntityInterface extends ContentEntityInterface, EntityChangedInterface, RevisionLogInterface, EntityPublishedInterface {

}

Interfaces

Namesort descending Description
ConfigEntityRevisionsEntityInterface Provides an interface defining a config entity revisions entity.