You are here

public function CacheFlushUICRUD::__construct in CacheFlush 8

Class constructor.

Parameters

\Drupal\Core\Extension\ModuleHandler $module_handler: The module handler.

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

\Symfony\Component\DependencyInjection\ContainerInterface $container: The messenger service.

Overrides BrowserTestBase::__construct

File

modules/cacheflush_ui/tests/src/Functional/CacheFlushUICRUD.php, line 74

Class

CacheFlushUICRUD
Test the UI CRUD.

Namespace

Drupal\Tests\cacheflush_ui\Functional

Code

public function __construct(ModuleHandler $module_handler, EntityTypeManagerInterface $entity_type_manager, ContainerInterface $container) {
  parent::__construct();
  $this->moduleHandler = $module_handler;
  $this->entityTypeManager = $entity_type_manager;
  $this->container = $container;
}