You are here

EnvironmentInterface.php in Environment 8

Namespace

Drupal\environment

File

src/EnvironmentInterface.php
View source
<?php

/**
 * @file
 * Contains Drupal\environment\EnvironmentInterface.
 */
namespace Drupal\environment;

use Drupal\Core\Config\Entity\ConfigEntityInterface;

/**
 * Provides an interface for defining Environment entities.
 */
interface EnvironmentInterface extends ConfigEntityInterface {
  public function getDescription();

}

Interfaces

Namesort descending Description
EnvironmentInterface Provides an interface for defining Environment entities.