Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. CommentStatistics.php

function CommentStatistics::delete

File

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

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();
}
RSS feed
Powered by Drupal