You are here

StorageCacheInterface.php in Drupal 10

Namespace

Drupal\Core\Config

File

core/lib/Drupal/Core/Config/StorageCacheInterface.php
View 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

Namesort descending Description
StorageCacheInterface Defines an interface for cached configuration storage.