You are here

StorageCacheInterface.php in Drupal 9

Same filename and directory in other branches
  1. 8 core/lib/Drupal/Core/Config/StorageCacheInterface.php

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.