You are here

public function FormOverrides::__construct in Configuration Override Warn 8

Constructs the FormOverrides service.

Parameters

\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The config factory.

\Drupal\Core\Config\TypedConfigManagerInterface $typed_config_manager: The typed config manager.

File

src/FormOverrides.php, line 41

Class

FormOverrides
Contains logic for inspecting config forms and their overridden values.

Namespace

Drupal\config_override_warn

Code

public function __construct(ConfigFactoryInterface $config_factory, TypedConfigManagerInterface $typed_config_manager) {
  $this->configFactory = $config_factory;
  $this->typedConfigManager = $typed_config_manager;
}