You are here

public function CalculateEntityDependenciesEvent::getDependencies in Dependency Calculation 8

A list of all uuids this entity is dependent on.

Return value

\Drupal\depcalc\DependentEntityWrapperInterface[] The dependencies.

File

src/Event/CalculateEntityDependenciesEvent.php, line 102

Class

CalculateEntityDependenciesEvent
The event dispatched to calculate dependencies.

Namespace

Drupal\depcalc\Event

Code

public function getDependencies() {
  return $this->stack
    ->getDependenciesByUuid(array_keys($this
    ->getWrapper()
    ->getDependencies()));
}