You are here

public function CommentStatistics::__construct in Drupal 8

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

Constructs the CommentStatistics service.

Parameters

\Drupal\Core\Database\Connection $database: The active database connection.

\Drupal\Core\Session\AccountInterface $current_user: The current logged in user.

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager.

\Drupal\Core\State\StateInterface $state: The state service.

\Drupal\Core\Database\Connection|null $database_replica: (Optional) the replica database connection.

File

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

Class

CommentStatistics

Namespace

Drupal\comment

Code

public function __construct(Connection $database, AccountInterface $current_user, EntityTypeManagerInterface $entity_type_manager, StateInterface $state, Connection $database_replica = NULL) {
  $this->database = $database;
  $this->databaseReplica = $database_replica ?: $database;
  $this->currentUser = $current_user;
  $this->entityTypeManager = $entity_type_manager;
  $this->state = $state;
}