You are here

IngredientInterface.php in Recipe 8.2

Namespace

Drupal\ingredient

File

modules/ingredient/src/IngredientInterface.php
View source
<?php

namespace Drupal\ingredient;

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

/**
 * Provides an interface defining an Ingredient entity.
 */
interface IngredientInterface extends ContentEntityInterface, EntityChangedInterface {

}

Interfaces

Namesort descending Description
IngredientInterface Provides an interface defining an Ingredient entity.