You are here

public function LinkStatusHandle::__construct in Link checker 8

LinkExtract constructor.

Overrides PluginBase::__construct

File

src/Plugin/QueueWorker/LinkStatusHandle.php, line 40

Class

LinkStatusHandle
Handler a status of a link.

Namespace

Drupal\linkchecker\Plugin\QueueWorker

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entityTypeManager, LinkStatusHandlerManager $statusHandlerManager) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->entityTypeManager = $entityTypeManager;
  $this->statusHandlerManager = $statusHandlerManager;
}