You are here

public function Comment::getThread in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/comment/src/Entity/Comment.php \Drupal\comment\Entity\Comment::getThread()
  2. 9 core/modules/comment/src/Entity/Comment.php \Drupal\comment\Entity\Comment::getThread()

File

core/modules/comment/src/Entity/Comment.php, line 486

Class

Comment
Defines the comment entity class.

Namespace

Drupal\comment\Entity

Code

public function getThread() {
  $thread = $this
    ->get('thread');
  if (!empty($thread->value)) {
    return $thread->value;
  }
}