You are here

public function SiteConfigOverrides::__construct in Config override 8

Creates a new SiteConfigOverrides instance.

Parameters

string $root: The app root.

\Drupal\Core\Cache\CacheBackendInterface $cacheBackend: The cache backend.

File

src/SiteConfigOverrides.php, line 39

Class

SiteConfigOverrides

Namespace

Drupal\config_override

Code

public function __construct($root, CacheBackendInterface $cacheBackend) {
  $this->root = $root;
  $this->cacheBackend = $cacheBackend;
}