You are here

public function Migration::setProcess in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/migrate/src/Entity/Migration.php \Drupal\migrate\Entity\Migration::setProcess()

Allows you to override the entire process configuration.

Parameters

array $process: The entire process pipeline configuration describing the process plugins.

Return value

$this

Overrides MigrationInterface::setProcess

File

core/modules/migrate/src/Entity/Migration.php, line 504
Contains \Drupal\migrate\Entity\Migration.

Class

Migration
Defines the Migration entity.

Namespace

Drupal\migrate\Entity

Code

public function setProcess(array $process) {
  $this->process = $process;
  return $this;
}