public function ConfigPartialExportCommands::__construct in Config Partial Export 8
Sync
Parameters
ConfigManagerInterface $configManager:
StorageInterface $configStorage:
File
- src/
Commands/ ConfigPartialExportCommands.php, line 56
Class
- ConfigPartialExportCommands
- Defines Drush commands for the Search API.
Namespace
Drupal\config_partial_export\CommandsCode
public function __construct(ConfigManagerInterface $configManager, StorageInterface $configStorage, StorageInterface $configStorageSync, ModuleHandlerInterface $moduleHandler, EventDispatcherInterface $eventDispatcher, LockBackendInterface $lock, TypedConfigManagerInterface $configTyped, ModuleInstallerInterface $moduleInstaller, ThemeHandlerInterface $themeHandler, TranslationInterface $stringTranslation) {
parent::__construct();
$this->configManager = $configManager;
$this->configStorage = $configStorage;
$this->configStorageSync = $configStorageSync;
$this->moduleHandler = $moduleHandler;
$this->eventDispatcher = $eventDispatcher;
$this->lock = $lock;
$this->configTyped = $configTyped;
$this->moduleInstaller = $moduleInstaller;
$this->themeHandler = $themeHandler;
$this->stringTranslation = $stringTranslation;
}