You are here

public function DefaultContentDeployCommands::__construct in Default Content Deploy 8

DefaultContentDeployCommands constructor.

Parameters

\Drupal\default_content_deploy\Exporter $exporter: DCD Exporter.

\Drupal\default_content_deploy\Importer $importer: DCD Importer.

\Drupal\default_content_deploy\DeployManager $deploy_manager: DCD manager.

File

src/Commands/DefaultContentDeployCommands.php, line 49

Class

DefaultContentDeployCommands
Class DefaultContentDeployCommands.

Namespace

Drupal\default_content_deploy\Commands

Code

public function __construct(Exporter $exporter, Importer $importer, DeployManager $deploy_manager) {
  $this->exporter = $exporter;
  $this->importer = $importer;
  $this->deployManager = $deploy_manager;
}