You are here

public function BuildIndexParamsEvent::__construct in Elasticsearch Connector 8.7

Same name and namespace in other branches
  1. 8.6 src/Event/BuildIndexParamsEvent.php \Drupal\elasticsearch_connector\Event\BuildIndexParamsEvent::__construct()

BuildIndexParamsEvent constructor.

Parameters

$params:

$indexName:

File

src/Event/BuildIndexParamsEvent.php, line 25

Class

BuildIndexParamsEvent
Class BuildIndexParamsEvent

Namespace

Drupal\elasticsearch_connector\Event

Code

public function __construct($params, $indexName) {
  $this->params = $params;
  $this->indexName = $indexName;
}