You are here

public function ConfigDevelSubscriberBase::__construct in Configuration development 8

Constructs the ConfigDevelAutoExportSubscriber object.

Parameters

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

\Drupal\Core\Config\ConfigManagerInterface $config_manager: The configuration manager.

1 call to ConfigDevelSubscriberBase::__construct()
ConfigDevelAutoExportSubscriber::__construct in src/EventSubscriber/ConfigDevelAutoExportSubscriber.php
Constructs the ConfigDevelAutoExportSubscriber object.
1 method overrides ConfigDevelSubscriberBase::__construct()
ConfigDevelAutoExportSubscriber::__construct in src/EventSubscriber/ConfigDevelAutoExportSubscriber.php
Constructs the ConfigDevelAutoExportSubscriber object.

File

src/EventSubscriber/ConfigDevelSubscriberBase.php, line 34

Class

ConfigDevelSubscriberBase

Namespace

Drupal\config_devel\EventSubscriber

Code

public function __construct(ConfigFactoryInterface $config_factory, ConfigManagerInterface $config_manager) {
  $this->configFactory = $config_factory;
  $this->configManager = $config_manager;
}