public function UnsavedIndexConfiguration::setEntityTypeManager in Search API 8
Sets the entity type manager.
Parameters
\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The new entity type manager.
Return value
$this
File
- src/UnsavedIndexConfiguration.php, line 97 
Class
- UnsavedIndexConfiguration
- Represents a configuration of an index that was not yet permanently saved.
Namespace
Drupal\search_apiCode
public function setEntityTypeManager(EntityTypeManagerInterface $entity_type_manager) {
  $this->entityTypeManager = $entity_type_manager;
  return $this;
}