public ConfigFactory::__construct(StorageInterface $storage, EventDispatcherInterface $event_dispatcher, TypedConfigManagerInterface $typed_config)
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
1 2 3 4 5 | public function __construct(StorageInterface $storage , EventDispatcherInterface $event_dispatcher , TypedConfigManagerInterface $typed_config ) { $this ->storage = $storage ; $this ->eventDispatcher = $event_dispatcher ; $this ->typedConfigManager = $typed_config ; } |
Please login to continue.