StorageManagerInterface.php 394 B

123456789101112131415161718192021
  1. <?php
  2. namespace Drupal\Core\Config;
  3. /**
  4. * Interface for a storage manager.
  5. */
  6. interface StorageManagerInterface {
  7. /**
  8. * Get the config storage.
  9. *
  10. * @return \Drupal\Core\Config\StorageInterface
  11. * The config storage.
  12. *
  13. * @throws \Drupal\Core\Config\StorageTransformerException
  14. * Thrown when the lock could not be acquired.
  15. */
  16. public function getStorage();
  17. }