You are here

public function TestMigrateExecutable::setSource in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/migrate/tests/src/Unit/TestMigrateExecutable.php \Drupal\Tests\migrate\Unit\TestMigrateExecutable::setSource()
  2. 10 core/modules/migrate/tests/src/Unit/TestMigrateExecutable.php \Drupal\Tests\migrate\Unit\TestMigrateExecutable::setSource()

Allows access to set protected source property.

Parameters

\Drupal\migrate\Plugin\MigrateSourceInterface $source: The value to set.

File

core/modules/migrate/tests/src/Unit/TestMigrateExecutable.php, line 43

Class

TestMigrateExecutable
Tests MigrateExecutable.

Namespace

Drupal\Tests\migrate\Unit

Code

public function setSource($source) {
  $this->source = $source;
}