function 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.