You are here

MentionsInterface.php in Open Social 10.3.x

Namespace

Drupal\mentions

File

modules/custom/mentions/src/MentionsInterface.php
View source
<?php

namespace Drupal\mentions;

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

/**
 * Provides an interface defining a Mention entity.
 */
interface MentionsInterface extends ContentEntityInterface, EntityOwnerInterface {

  /**
   * Gets the Mentions creation timestamp.
   *
   * @return int
   *   Creation timestamp of the Mentions.
   */
  public function getCreatedTime();

}

Interfaces

Namesort descending Description
MentionsInterface Provides an interface defining a Mention entity.