You are here

BookingInterface.php in Booking and Availability Management Tools for Drupal 8

Namespace

Drupal\bat_booking

File

modules/bat_booking/src/BookingInterface.php
View source
<?php

/**
 * @file
 * Contains \Drupal\bat_booking\BookingInterface.
 */
namespace Drupal\bat_booking;

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

/**
 * Provides an interface for defining Unit entities.
 *
 * @ingroup bat
 */
interface BookingInterface extends ContentEntityInterface, EntityChangedInterface, EntityOwnerInterface {

}

Interfaces

Namesort descending Description
BookingInterface Provides an interface for defining Unit entities.