You are here

public function DependencyStack::getProcessedDependencies in Dependency Calculation 8

Get a list of processed dependencies within the stack.

This will exclude dependencies that have been created but which still require additional processing.

Return value

\Drupal\depcalc\DependentEntityWrapperInterface[] The processed dependencies.

File

src/DependencyStack.php, line 179

Class

DependencyStack
The dependencies stack.

Namespace

Drupal\depcalc

Code

public function getProcessedDependencies() {
  return array_diff_key($this->dependencies, $this->additional_processing);
}