You are here

public function CachedStorage::__construct in Zircon Profile 8.0

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

Constructs a new CachedStorage.

Parameters

\Drupal\Core\Config\StorageInterface $storage: A configuration storage to be cached.

\Drupal\Core\Cache\CacheBackendInterface $cache: A cache backend used to store configuration.

File

core/lib/Drupal/Core/Config/CachedStorage.php, line 52
Contains \Drupal\Core\Config\CachedStorage.

Class

CachedStorage
Defines the cached storage.

Namespace

Drupal\Core\Config

Code

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