StorageCacheInterface.php 242 B

123456789101112131415
  1. <?php
  2. namespace Drupal\Core\Config;
  3. /**
  4. * Defines an interface for cached configuration storage.
  5. */
  6. interface StorageCacheInterface {
  7. /**
  8. * Reset the static cache of the listAll() cache.
  9. */
  10. public function resetListCache();
  11. }