You are here

WorkflowInterface.php in Forms Steps 8

Namespace

Drupal\forms_steps

File

src/WorkflowInterface.php
View source
<?php

namespace Drupal\forms_steps;

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

/**
 * Provides an interface defining a Workflow entity.
 */
interface WorkflowInterface extends ContentEntityInterface, EntityOwnerInterface, EntityChangedInterface {

}

Interfaces

Namesort descending Description
WorkflowInterface Provides an interface defining a Workflow entity.