function mongodb_comment_entity_type_alter in MongoDB 8
Implements hook_entity_type_alter().
File
- mongodb_comment/
mongodb_comment.module, line 6
Code
function mongodb_comment_entity_type_alter(array &$entity_types) {
if (isset($entity_types['comment'])) {
$entity_types['comment']
->setStorageClass('Drupal\\mongodb_comment\\MongodbCommentStorage');
}
}