You are here

protected function MigrateExecutable::currentSourceIds in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/migrate/src/MigrateExecutable.php \Drupal\migrate\MigrateExecutable::currentSourceIds()
  2. 9 core/modules/migrate/src/MigrateExecutable.php \Drupal\migrate\MigrateExecutable::currentSourceIds()

Fetches the key array for the current source record.

Return value

array The current source IDs.

File

core/modules/migrate/src/MigrateExecutable.php, line 480

Class

MigrateExecutable
Defines a migrate executable class.

Namespace

Drupal\migrate

Code

protected function currentSourceIds() {
  return $this
    ->getSource()
    ->getCurrentIds();
}