You are here

public function Sql::setMessage in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/migrate/src/Plugin/migrate/id_map/Sql.php \Drupal\migrate\Plugin\migrate\id_map\Sql::setMessage()
  2. 10 core/modules/migrate/src/Plugin/migrate/id_map/Sql.php \Drupal\migrate\Plugin\migrate\id_map\Sql::setMessage()

Sets the migrate message service.

Parameters

\Drupal\migrate\MigrateMessageInterface $message: The migrate message service.

Overrides MigrateIdMapInterface::setMessage

File

core/modules/migrate/src/Plugin/migrate/id_map/Sql.php, line 309

Class

Sql
Defines the sql based ID map implementation.

Namespace

Drupal\migrate\Plugin\migrate\id_map

Code

public function setMessage(MigrateMessageInterface $message) {
  $this->message = $message;
}