You are here

public function Migration::set in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/migrate/src/Plugin/Migration.php \Drupal\migrate\Plugin\Migration::set()
1 method overrides Migration::set()
TestMigrationMock::set in core/modules/migrate/tests/src/Unit/MigrationPluginManagerTest.php

File

core/modules/migrate/src/Plugin/Migration.php, line 553

Class

Migration
Defines the Migration plugin.

Namespace

Drupal\migrate\Plugin

Code

public function set($property_name, $value) {
  if ($property_name == 'source') {

    // Invalidate the source plugin.
    unset($this->sourcePlugin);
  }
  elseif ($property_name === 'destination') {

    // Invalidate the destination plugin.
    unset($this->destinationPlugin);
  }
  $this->{$property_name} = $value;
  return $this;
}