From 974d0f915cb524ccf62039df2c709a64f1e135ac Mon Sep 17 00:00:00 2001
From: Nathaniel Catchpole <catch@35733.no-reply.drupal.org>
Date: Fri, 2 Feb 2018 12:50:50 +0000
Subject: [PATCH] Issue #2940108 by yo30, quietone, maxocub:
 getLegacyDrupalVersion() returns string not int as documented

---
 .../migrate_drupal/src/MigrationConfigurationTrait.php        | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/modules/migrate_drupal/src/MigrationConfigurationTrait.php b/core/modules/migrate_drupal/src/MigrationConfigurationTrait.php
index 683823296a8f..b566c821677f 100644
--- a/core/modules/migrate_drupal/src/MigrationConfigurationTrait.php
+++ b/core/modules/migrate_drupal/src/MigrationConfigurationTrait.php
@@ -125,8 +125,8 @@ protected function getMigrations($database_state_key, $drupal_version) {
    * @param \Drupal\Core\Database\Connection $connection
    *   The database connection object.
    *
-   * @return int|false
-   *   An integer representing the major branch of Drupal core (e.g. '6' for
+   * @return string|false
+   *   A string representing the major branch of Drupal core (e.g. '6' for
    *   Drupal 6.x), or FALSE if no valid version is matched.
    */
   protected function getLegacyDrupalVersion(Connection $connection) {
-- 
GitLab