You are here

public function UnsavedIndexConfiguration::toArray in Search API 8

Gets an array of all property values.

Return value

mixed[] An array of property values, keyed by property name.

Overrides EntityInterface::toArray

File

src/UnsavedIndexConfiguration.php, line 987

Class

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

Namespace

Drupal\search_api

Code

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