Issue #3247205 by beatrizrodrigues, quietone, joachim: MigrateDestinationInterface::rollback() should document that its $destination_identifier parameter is an associative array

merge-requests/8861/head
catch 2024-10-08 10:44:01 +01:00
parent 8b53ceb644
commit 4edd2db688
1 changed files with 4 additions and 1 deletions

View File

@ -122,7 +122,10 @@ interface MigrateDestinationInterface extends PluginInspectionInterface {
* Delete the specified destination object from the target Drupal.
*
* @param array $destination_identifier
* The ID of the destination object to delete.
* An associative array of destination IDs for the object to delete. The
* array keys are defined by the
* \Drupal\migrate\Plugin\MigrateDestinationInterface::getIds() method used
* by the destination object.
*/
public function rollback(array $destination_identifier);