You are here

public function ConfigFactory::__construct in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Config/ConfigFactory.php \Drupal\Core\Config\ConfigFactory::__construct()
  2. 10 core/lib/Drupal/Core/Config/ConfigFactory.php \Drupal\Core\Config\ConfigFactory::__construct()

Constructs the Config factory.

Parameters

\Drupal\Core\Config\StorageInterface $storage: The configuration storage engine.

\Symfony\Component\EventDispatcher\EventDispatcherInterface $event_dispatcher: An event dispatcher instance to use for configuration events.

\Drupal\Core\Config\TypedConfigManagerInterface $typed_config: The typed configuration manager.

File

core/lib/Drupal/Core/Config/ConfigFactory.php, line 72

Class

ConfigFactory
Defines the configuration object factory.

Namespace

Drupal\Core\Config

Code

public function __construct(StorageInterface $storage, EventDispatcherInterface $event_dispatcher, TypedConfigManagerInterface $typed_config) {
  $this->storage = $storage;
  $this->eventDispatcher = $event_dispatcher;
  $this->typedConfigManager = $typed_config;
}