You are here

public function ConfigController::__construct in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/config/src/Controller/ConfigController.php \Drupal\config\Controller\ConfigController::__construct()

Constructs a ConfigController object.

Parameters

\Drupal\Core\Config\StorageInterface $target_storage: The target storage.

\Drupal\Core\Config\StorageInterface $source_storage: The source storage

\Drupal\system\FileDownloadController $file_download_controller: The file download controller.

File

core/modules/config/src/Controller/ConfigController.php, line 84
Contains \Drupal\config\Controller\ConfigController.

Class

ConfigController
Returns responses for config module routes.

Namespace

Drupal\config\Controller

Code

public function __construct(StorageInterface $target_storage, StorageInterface $source_storage, ConfigManagerInterface $config_manager, FileDownloadController $file_download_controller, DiffFormatter $diff_formatter) {
  $this->targetStorage = $target_storage;
  $this->sourceStorage = $source_storage;
  $this->configManager = $config_manager;
  $this->fileDownloadController = $file_download_controller;
  $this->diffFormatter = $diff_formatter;
}