You are here

public function PreExistingConfigException::getConfigObjects in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Config/PreExistingConfigException.php \Drupal\Core\Config\PreExistingConfigException::getConfigObjects()

Gets the list of configuration objects that already exist.

Return value

array A list of configuration objects that already exist in active configuration keyed by collection.

File

core/lib/Drupal/Core/Config/PreExistingConfigException.php, line 38
Contains \Drupal\Core\Config\PreExistingConfigException.

Class

PreExistingConfigException
An exception thrown if configuration with the same name already exists.

Namespace

Drupal\Core\Config

Code

public function getConfigObjects() {
  return $this->configObjects;
}