Security update for Core, with self-updated composer
[yaffs-website] / web / core / lib / Drupal / Core / Config / StorageCacheInterface.php
1 <?php
2
3 namespace Drupal\Core\Config;
4
5 /**
6  * Defines an interface for cached configuration storage.
7  */
8 interface StorageCacheInterface {
9
10   /**
11    * Reset the static cache of the listAll() cache.
12    */
13   public function resetListCache();
14
15 }