You are here

public function UnsavedIndexConfiguration::enable in Search API 8

Enables the configuration entity.

Return value

$this

Overrides ConfigEntityInterface::enable

File

src/UnsavedIndexConfiguration.php, line 634

Class

UnsavedIndexConfiguration
Represents a configuration of an index that was not yet permanently saved.

Namespace

Drupal\search_api

Code

public function enable() {
  $this->entity
    ->enable();
  return $this;
}