You are here

RegistrationInterface.php in Entity Registration 8

File

src/RegistrationInterface.php
View source
<?php

/**
 * @file
 * Contains \Drupal\registration\RegistrationInterface.
 */
namespace Drupal\registration;

use Drupal\user\EntityOwnerInterface;
use Drupal\Core\Entity\EntityChangedInterface;
use Drupal\Core\Entity\ContentEntityInterface;

/**
 * Provides an interface defining a node entity.
 */
interface RegistrationInterface extends ContentEntityInterface, EntityChangedInterface, EntityOwnerInterface {

}

Interfaces

Namesort descending Description
RegistrationInterface Provides an interface defining a node entity.