You are here

public function Migration::setSystemOfRecord 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::setSystemOfRecord()

Set the system of record for the migration.

Parameters

string $system_of_record: The system of record of the migration.

Return value

$this

Overrides MigrationInterface::setSystemOfRecord

File

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

Class

Migration
Defines the Migration entity.

Namespace

Drupal\migrate\Entity

Code

public function setSystemOfRecord($system_of_record) {
  $this->systemOfRecord = $system_of_record;
  return $this;
}