From eca67ab6da50e0f703e696149741bb5a34b6d051 Mon Sep 17 00:00:00 2001
From: Alex Pott <alex.a.pott@googlemail.com>
Date: Wed, 9 Sep 2015 15:38:14 +0100
Subject: [PATCH] Issue #2560423 by bojanz: MigrateDestinationPluginManager has
 wrong class members

---
 .../MigrateDestinationPluginManager.php       | 28 ++++++++++++-------
 1 file changed, 18 insertions(+), 10 deletions(-)

diff --git a/core/modules/migrate/src/Plugin/MigrateDestinationPluginManager.php b/core/modules/migrate/src/Plugin/MigrateDestinationPluginManager.php
index b8f187d1cd5a..96f7be54bd22 100644
--- a/core/modules/migrate/src/Plugin/MigrateDestinationPluginManager.php
+++ b/core/modules/migrate/src/Plugin/MigrateDestinationPluginManager.php
@@ -26,21 +26,29 @@
 class MigrateDestinationPluginManager extends MigratePluginManager {
 
   /**
-   * The theme handler
+   * The entity manager.
    *
-   * @var \Drupal\Core\Extension\ThemeHandlerInterface
+   * @var \Drupal\Core\Entity\EntityManagerInterface
    */
-  protected $themeHandler;
+  protected $entityManager;
 
   /**
-   * An associative array where the keys are the enabled modules and themes.
+   * Constructs a MigrateDestinationPluginManager object.
    *
-   * @var array
-   */
-  protected $providers;
-
-  /**
-   * {@inheritdoc}
+   * @param string $type
+   *   The type of the plugin: row, source, process, destination, entity_field,
+   * id_map.
+   * @param \Traversable $namespaces
+   *   An object that implements \Traversable which contains the root paths
+   *   keyed by the corresponding namespace to look for plugin implementations.
+   * @param \Drupal\Core\Cache\CacheBackendInterface $cache_backend
+   *   Cache backend instance to use.
+   * @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
+   *   The module handler to invoke the alter hook with.
+   * @param \Drupal\Core\Entity\EntityManagerInterface $entity_manager
+   *   The entity manager.
+   * @param string $annotation
+   *   The annotation class name.
    */
   public function __construct($type, \Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler, EntityManagerInterface $entity_manager, $annotation = 'Drupal\migrate\Annotation\MigrateDestination') {
     parent::__construct($type, $namespaces, $cache_backend, $module_handler, $annotation);
-- 
GitLab