public function MigrateStubInterface::createStub in Drupal 9
Same name and namespace in other branches
- 8 core/modules/migrate/src/MigrateStubInterface.php \Drupal\migrate\MigrateStubInterface::createStub()
Creates a stub.
Parameters
string $migration_id: The migration to stub.
array $source_ids: An array of source ids.
array $default_values: (optional) An array of default values to add to the stub.
Return value
array|false An array of destination ids for the new stub, keyed by destination id key, or false if the stub failed.
1 method overrides MigrateStubInterface::createStub()
- MigrateStub::createStub in core/
modules/ migrate/ src/ MigrateStub.php - Creates a stub.
File
- core/
modules/ migrate/ src/ MigrateStubInterface.php, line 24
Class
- MigrateStubInterface
- Provides an interface for the migrate stub service.
Namespace
Drupal\migrateCode
public function createStub($migration_id, array $source_ids, array $default_values = []);