You are here

public function Row::freezeSource in Zircon Profile 8

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

Freezes the source.

Return value

$this

File

core/modules/migrate/src/Row.php, line 185
Contains \Drupal\migrate\Row.

Class

Row
Stores a row.

Namespace

Drupal\migrate

Code

public function freezeSource() {
  $this->frozen = TRUE;
  return $this;
}