You are here

public function UnsavedIndexConfiguration::disable in Search API 8

Disables the configuration entity.

Return value

$this

Overrides ConfigEntityInterface::disable

File

src/UnsavedIndexConfiguration.php, line 642

Class

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

Namespace

Drupal\search_api

Code

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