public function NullIdMap::currentDestination in Drupal 8
Same name and namespace in other branches
- 9 core/modules/migrate/src/Plugin/migrate/id_map/NullIdMap.php \Drupal\migrate\Plugin\migrate\id_map\NullIdMap::currentDestination()
Looks up the destination identifier currently being iterated.
Return value
array The destination identifier values of the record, or NULL on failure.
Overrides MigrateIdMapInterface::currentDestination
File
- core/
modules/ migrate/ src/ Plugin/ migrate/ id_map/ NullIdMap.php, line 179
Class
- NullIdMap
- Defines the null ID map implementation.
Namespace
Drupal\migrate\Plugin\migrate\id_mapCode
public function currentDestination() {
return NULL;
}