Unverified Commit 8182c97e authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3212891 by vaish, brentgees@gmail.com, srilakshmier, mikelutz,...

Issue #3212891 by vaish, brentgees@gmail.com, srilakshmier, mikelutz, quietone, alexpott: Incorrect type declaration in docblock for class property

(cherry picked from commit 2aee2c17)
parent 707121c9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -96,7 +96,7 @@ class Migration extends PluginBase implements MigrationInterface, RequirementsIn
   *
   * Used to initialize $idMapPlugin.
   *
   * @var string
   * @var array
   */
  protected $idMap = [];

+3 −3
Original line number Diff line number Diff line
@@ -111,9 +111,9 @@ class Sql extends PluginBase implements MigrateIdMapInterface, ContainerFactoryP
  /**
   * The result.
   *
   * @var null
   * @var \Drupal\Core\Database\StatementInterface
   */
  protected $result = NULL;
  protected $result;

  /**
   * The source identifiers.
@@ -132,7 +132,7 @@ class Sql extends PluginBase implements MigrateIdMapInterface, ContainerFactoryP
  /**
   * The current row.
   *
   * @var null
   * @var array|false|null
   */
  protected $currentRow = NULL;