You are here

protected property UnmetDependenciesException::$configObjects in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Config/UnmetDependenciesException.php \Drupal\Core\Config\UnmetDependenciesException::configObjects

A list of configuration objects that have unmet dependencies.

The list is keyed by the config object name, and the value is an array of the missing dependencies:



self::configObjects = [
  config_object_name => [
    'missing_dependency_1',
    'missing_dependency_2',
  ]
];

Type: array

File

core/lib/Drupal/Core/Config/UnmetDependenciesException.php, line 32

Class

UnmetDependenciesException
An exception thrown if configuration has unmet dependencies.

Namespace

Drupal\Core\Config

Code

protected $configObjects = [];