You are here

public function ConfigManager::__construct in Remove HTTP headers 8

ConfigManager constructor.

Parameters

\Drupal\Core\Config\ConfigFactoryInterface $configFactory: The config factory service.

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

File

src/Config/ConfigManager.php, line 51

Class

ConfigManager
Manages module configuration.

Namespace

Drupal\remove_http_headers\Config

Code

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