You are here

TweetEntityInterface.php in Tweet Feed 8.3

Same filename and directory in other branches
  1. 4.x src/Entity/TweetEntityInterface.php

File

src/Entity/TweetEntityInterface.php
View source
<?php

namespace Drupal\tweet_feed\Entity;

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

/**
 * Provides an interface for defining Tweet entity entities.
 *
 * @ingroup tweet_feed
 */
interface TweetEntityInterface extends ContentEntityInterface, EntityChangedInterface, EntityOwnerInterface {

}

Interfaces

Namesort descending Description
TweetEntityInterface Provides an interface for defining Tweet entity entities.