From f268fe3e7ae408c370cf51730dffb1134e418c4f Mon Sep 17 00:00:00 2001 From: catch <catch@35733.no-reply.drupal.org> Date: Wed, 19 Jul 2023 13:55:27 +0100 Subject: [PATCH] Issue #3262110 by quietone, neclimdul, mikelutz, heddn, smustgrave, phenaproxima: Remove unused properties in Migration.php --- core/modules/migrate/src/Plugin/Migration.php | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/core/modules/migrate/src/Plugin/Migration.php b/core/modules/migrate/src/Plugin/Migration.php index 01a09a184e32..f19a35e3e5fc 100644 --- a/core/modules/migrate/src/Plugin/Migration.php +++ b/core/modules/migrate/src/Plugin/Migration.php @@ -112,13 +112,6 @@ class Migration extends PluginBase implements MigrationInterface, RequirementsIn */ protected $label; - /** - * The plugin ID for the row. - * - * @var string - */ - protected $row; - /** * The source configuration, with at least a 'plugin' key. * @@ -184,16 +177,6 @@ class Migration extends PluginBase implements MigrationInterface, RequirementsIn */ protected $idMapPlugin; - /** - * The source identifiers. - * - * An array of source identifiers: the keys are the name of the properties, - * the values are dependent on the ID map plugin. - * - * @var array - */ - protected $sourceIds = []; - /** * The destination identifiers. * -- GitLab