Version 1
[yaffs-website] / web / core / lib / Drupal / Core / Config / StorageCacheInterface.php
diff --git a/web/core/lib/Drupal/Core/Config/StorageCacheInterface.php b/web/core/lib/Drupal/Core/Config/StorageCacheInterface.php
new file mode 100644 (file)
index 0000000..e402ecc
--- /dev/null
@@ -0,0 +1,15 @@
+<?php
+
+namespace Drupal\Core\Config;
+
+/**
+ * Defines an interface for cached configuration storage.
+ */
+interface StorageCacheInterface {
+
+  /**
+   * Reset the static cache of the listAll() cache.
+   */
+  public function resetListCache();
+
+}