You are here

public function UnsavedIndexConfiguration::calculateDependencies in Search API 8

Calculates dependencies and stores them in the dependency property.

Return value

$this

Overrides ConfigEntityInterface::calculateDependencies

See also

\Drupal\Core\Config\Entity\ConfigDependencyManager

File

src/UnsavedIndexConfiguration.php, line 702

Class

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

Namespace

Drupal\search_api

Code

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