public CommentStorageInterface::getChildCids(array $comments)
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.
File
- core/modules/comment/src/CommentStorageInterface.php, line 81
Class
- CommentStorageInterface
- Defines an interface for comment entity storage classes.
Namespace
Drupal\comment
Code
public function getChildCids(array $comments);
Please login to continue.