public function MigrateMapSaveEvent::__construct in Drupal 9
Same name and namespace in other branches
- 8 core/modules/migrate/src/Event/MigrateMapSaveEvent.php \Drupal\migrate\Event\MigrateMapSaveEvent::__construct()
Constructs a migration map event object.
Parameters
\Drupal\migrate\Plugin\MigrateIdMapInterface $map: Map plugin.
array $fields: Array of fields being saved to the map.
File
- core/
modules/ migrate/ src/ Event/ MigrateMapSaveEvent.php, line 35
Class
- MigrateMapSaveEvent
- Wraps a migrate map save event for event listeners.
Namespace
Drupal\migrate\EventCode
public function __construct(MigrateIdMapInterface $map, array $fields) {
$this->map = $map;
$this->fields = $fields;
}