You are here

public function CommentStatistics::delete in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/comment/src/CommentStatistics.php \Drupal\comment\CommentStatistics::delete()
  2. 9 core/modules/comment/src/CommentStatistics.php \Drupal\comment\CommentStatistics::delete()

File

core/modules/comment/src/CommentStatistics.php, line 94

Class

CommentStatistics

Namespace

Drupal\comment

Code

public function delete(EntityInterface $entity) {
  $this->database
    ->delete('comment_entity_statistics')
    ->condition('entity_id', $entity
    ->id())
    ->condition('entity_type', $entity
    ->getEntityTypeId())
    ->execute();
}