You are here

public function ReadOnlyStorage::__construct in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Config/ReadOnlyStorage.php \Drupal\Core\Config\ReadOnlyStorage::__construct()

Create a ReadOnlyStorage decorating another storage.

Parameters

\Drupal\Core\Config\StorageInterface $storage: The decorated storage.

File

core/lib/Drupal/Core/Config/ReadOnlyStorage.php, line 23

Class

ReadOnlyStorage
A ReadOnlyStorage decorates a storage and does not allow writing to it.

Namespace

Drupal\Core\Config

Code

public function __construct(StorageInterface $storage) {
  $this->storage = $storage;
}