function ReadOnlyStorage::__construct
Same name in other branches
- 9 core/lib/Drupal/Core/Config/ReadOnlyStorage.php \Drupal\Core\Config\ReadOnlyStorage::__construct()
- 10 core/lib/Drupal/Core/Config/ReadOnlyStorage.php \Drupal\Core\Config\ReadOnlyStorage::__construct()
- 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\ConfigCode
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.