StorageCacheInterface.php in Drupal 10
Same filename and directory in other branches
Namespace
Drupal\Core\ConfigFile
core/lib/Drupal/Core/Config/StorageCacheInterface.phpView source
<?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();
}
Interfaces
Name | Description |
---|---|
StorageCacheInterface | Defines an interface for cached configuration storage. |