X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;f=web%2Fcore%2Flib%2FDrupal%2FCore%2FConfig%2FConfigFactory.php;h=e43a36c1f15dd05d7db830ad2cc644e9b2208416;hb=refs%2Fheads%2Fd864;hp=8c06cd1edf78b790b1942922910773dc036a297e;hpb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;p=yaffs-website diff --git a/web/core/lib/Drupal/Core/Config/ConfigFactory.php b/web/core/lib/Drupal/Core/Config/ConfigFactory.php index 8c06cd1ed..e43a36c1f 100644 --- a/web/core/lib/Drupal/Core/Config/ConfigFactory.php +++ b/web/core/lib/Drupal/Core/Config/ConfigFactory.php @@ -306,7 +306,7 @@ class ConfigFactory implements ConfigFactoryInterface, EventSubscriberInterface * An array of cache keys that match the provided config name. */ protected function getConfigCacheKeys($name) { - return array_filter(array_keys($this->cache), function($key) use ($name) { + return array_filter(array_keys($this->cache), function ($key) use ($name) { // Return TRUE if the key is the name or starts with the configuration // name plus the delimiter. return $key === $name || strpos($key, $name . ':') === 0;