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