You are here

Comment.php in Open Social 8.8

File

modules/social_features/social_comment/src/Entity/Comment.php
View source
<?php

namespace Drupal\social_comment\Entity;

use Drupal\comment\Entity\Comment as CommentBase;
use Drupal\social_core\EntityUrlLanguageTrait;

/**
 * Provides a Comment entity that has links that work with different languages.
 */
class Comment extends CommentBase {
  use EntityUrlLanguageTrait;

}

Classes

Namesort descending Description
Comment Provides a Comment entity that has links that work with different languages.