You are here

public function Field::getDependencies in Search API 8

Retrieves the field's dependencies.

Return value

string[][] The field's dependencies.

Overrides FieldInterface::getDependencies

1 call to Field::getDependencies()
Field::getSettings in src/Item/Field.php
Retrieves all settings encapsulated in this field as an array.

File

src/Item/Field.php, line 653

Class

Field
Represents a field on a search item that can be indexed.

Namespace

Drupal\search_api\Item

Code

public function getDependencies() {
  return $this->dependencies;
}