Mercurial > hg > isophonics-drupal-site
comparison core/lib/Drupal/Core/Config/UnmetDependenciesException.php @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | 4c8ae668cc8c |
children |
comparison
equal
deleted
inserted
replaced
16:c2387f117808 | 17:129ea1e6d783 |
---|---|
90 */ | 90 */ |
91 public static function create($extension, array $config_objects) { | 91 public static function create($extension, array $config_objects) { |
92 $message = new FormattableMarkup('Configuration objects provided by %extension have unmet dependencies: %config_names', | 92 $message = new FormattableMarkup('Configuration objects provided by %extension have unmet dependencies: %config_names', |
93 [ | 93 [ |
94 '%config_names' => static::formatConfigObjectList($config_objects), | 94 '%config_names' => static::formatConfigObjectList($config_objects), |
95 '%extension' => $extension | 95 '%extension' => $extension, |
96 ] | 96 ] |
97 ); | 97 ); |
98 $e = new static($message); | 98 $e = new static($message); |
99 $e->configObjects = $config_objects; | 99 $e->configObjects = $config_objects; |
100 $e->extension = $extension; | 100 $e->extension = $extension; |