public function UnmetDependenciesException::getConfigObjects in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Config/UnmetDependenciesException.php \Drupal\Core\Config\UnmetDependenciesException::getConfigObjects()
Gets the list of configuration objects that have unmet dependencies.
Return value
array A list of configuration objects that have unmet dependencies, keyed by object name, with the value being a list of the unmet dependencies.
File
- core/
lib/ Drupal/ Core/ Config/ UnmetDependenciesException.php, line 48
Class
- UnmetDependenciesException
- An exception thrown if configuration has unmet dependencies.
Namespace
Drupal\Core\ConfigCode
public function getConfigObjects() {
return $this->configObjects;
}