public function UnmetDependenciesException::getConfigObjects in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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.
1 call to UnmetDependenciesException::getConfigObjects()
- UnmetDependenciesException::getTranslatedMessage in core/
lib/ Drupal/ Core/ Config/ UnmetDependenciesException.php - Gets a translated message from the exception.
File
- core/
lib/ Drupal/ Core/ Config/ UnmetDependenciesException.php, line 38 - Contains \Drupal\Core\Config\UnmetDependenciesException.
Class
- UnmetDependenciesException
- An exception thrown if configuration has unmet dependencies.
Namespace
Drupal\Core\ConfigCode
public function getConfigObjects() {
return $this->configObjects;
}