You are here

public function DebuggingReviewForm::__construct in Lightweight Directory Access Protocol (LDAP) 8.4

Class constructor.

Parameters

\Drupal\Core\Config\ConfigFactoryInterface $config_factory: Config factory.

\Drupal\Core\Extension\ModuleHandler $module_handler: Module handler.

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

File

ldap_servers/src/Form/DebuggingReviewForm.php, line 59

Class

DebuggingReviewForm
Form to allow for debugging review.

Namespace

Drupal\ldap_servers\Form

Code

public function __construct(ConfigFactoryInterface $config_factory, ModuleHandler $module_handler, EntityTypeManagerInterface $entity_type_manager) {
  $this->config = $config_factory;
  $this->moduleHandler = $module_handler;
  $this->entityTypeManager = $entity_type_manager;
}