function ConfigDependencyManager::updateData
Updates one of the lightweight ConfigEntityDependency objects.
Parameters
$name: The configuration dependency name.
array $dependencies: The configuration dependencies. The array is structured like this:
[
  'config' => [],
  'content' => [],
  'module' => [],
  'theme' => [],
];
  Return value
$this
File
- 
              core/
lib/ Drupal/ Core/ Config/ Entity/ ConfigDependencyManager.php, line 338  
Class
- ConfigDependencyManager
 - Provides a class to discover configuration entity dependencies.
 
Namespace
Drupal\Core\Config\EntityCode
public function updateData($name, array $dependencies) {
  $this->graph = NULL;
  $this->data[$name] = new ConfigEntityDependency($name, [
    'dependencies' => $dependencies,
  ]);
  return $this;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.