You are here

public function CommentStorageInterface::getMaxThreadPerThread in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/comment/src/CommentStorageInterface.php \Drupal\comment\CommentStorageInterface::getMaxThreadPerThread()

Gets the maximum encoded thread value for the children of this comment.

Parameters

\Drupal\comment\CommentInterface $comment: A comment entity.

Return value

string The maximum encoded thread value among all replies of $comment.

1 method overrides CommentStorageInterface::getMaxThreadPerThread()
CommentStorage::getMaxThreadPerThread in core/modules/comment/src/CommentStorage.php
Gets the maximum encoded thread value for the children of this comment.

File

core/modules/comment/src/CommentStorageInterface.php, line 35

Class

CommentStorageInterface
Defines an interface for comment entity storage classes.

Namespace

Drupal\comment

Code

public function getMaxThreadPerThread(CommentInterface $comment);