You are here

public function DelayedRequestDispatcher::__construct in Email confirmer 8

Creates a new DelayedRequestDispatcher object.

Parameters

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

Overrides PluginBase::__construct

File

src/Plugin/QueueWorker/DelayedRequestDispatcher.php, line 42

Class

DelayedRequestDispatcher
Process queued confirmation requests on CRON run.

Namespace

Drupal\email_confirmer\Plugin\QueueWorker

Code

public function __construct(EntityTypeManagerInterface $entity_type_manager) {
  $this->already = [];
  $this->entityTypeManager = $entity_type_manager;
}