You are here

public function MongodbCommentStorage::getChildCids in MongoDB 8

Gets the comment ids of the passed comment entities' children.

Parameters

\Drupal\comment\CommentInterface[] $comments: An array of comment entities keyed by their ids.

Return value

array The entity ids of the passed comment entities' children as an array.

Overrides CommentStorageInterface::getChildCids

File

mongodb_comment/src/MongodbCommentStorage.php, line 95
Contains \Drupal\mongodb_comment\MongodbCommentStorage.

Class

MongodbCommentStorage

Namespace

Drupal\mongodb_comment

Code

public function getChildCids(array $comments) {

  // TODO: Implement getChildCids() method.
  return [];
}