Implements hook_ENTITY_TYPE_insert() for comment entities.
public function commentInsert($comment) { // Reindex the node when comments are added. if ($comment->getCommentedEntityTypeId() == 'node') { node_reindex_node_search($comment->getCommentedEntityId()); } }