You are here

interface StorageManagerInterface in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Config/StorageManagerInterface.php \Drupal\Core\Config\StorageManagerInterface
  2. 9 core/lib/Drupal/Core/Config/StorageManagerInterface.php \Drupal\Core\Config\StorageManagerInterface

Interface for a storage manager.

Hierarchy

Expanded class hierarchy of StorageManagerInterface

All classes that implement StorageManagerInterface

1 file declares its use of StorageManagerInterface
ManagedStorageTest.php in core/tests/Drupal/KernelTests/Core/Config/Storage/ManagedStorageTest.php

File

core/lib/Drupal/Core/Config/StorageManagerInterface.php, line 8

Namespace

Drupal\Core\Config
View source
interface StorageManagerInterface {

  /**
   * Get the config storage.
   *
   * @return \Drupal\Core\Config\StorageInterface
   *   The config storage.
   *
   * @throws \Drupal\Core\Config\StorageTransformerException
   *   Thrown when the lock could not be acquired.
   */
  public function getStorage();

}

Members