function ReadOnlyStorage::__construct

Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Config/ReadOnlyStorage.php \Drupal\Core\Config\ReadOnlyStorage::__construct()
  2. 10 core/lib/Drupal/Core/Config/ReadOnlyStorage.php \Drupal\Core\Config\ReadOnlyStorage::__construct()
  3. 11.x 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;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.