Unverified Commit 35bd80be authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3112829 by alexpott: Fix fails due to...

Issue #3112829 by alexpott: Fix fails due to Generic.CodeAnalysis.EmptyPHPStatement.SemicolonWithoutCodeDetected due to recent dependency updates

(cherry picked from commit 4cfaf1e6)
parent b137c462
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -301,7 +301,7 @@ function field_config_import_steps_alter(&$sync_steps, ConfigImporter $config_im
    // to purge field data where the module that provides the field is being
    // uninstalled.
    array_unshift($sync_steps, ['\Drupal\field\ConfigImporterFieldPurger', 'process']);
  };
  }
}

/**
+1 −1
Original line number Diff line number Diff line
@@ -975,7 +975,7 @@ public function getHighestId() {
    $keys = $this->migration->getDestinationPlugin()->getIds();
    if (reset($keys)['type'] !== 'integer') {
      throw new \LogicException('To determine the highest migrated ID the first ID must be an integer');
    };
    }

    // List of mapping tables to look in for the highest ID.
    $map_tables = [
+1 −1
Original line number Diff line number Diff line
@@ -249,7 +249,7 @@ function taxonomy_post_update_configure_status_field_widget(&$sandbox = NULL) {
        ],
      ]);
      return TRUE;
    };
    }
    return FALSE;
  });
}
+1 −1
Original line number Diff line number Diff line
@@ -148,7 +148,7 @@ public function testConfigRemovalBaseTable() {
    foreach ($entities as $entity_type_id => $definition) {
      if ($definition->getProvider() == 'entity_test') {
        $this->installEntitySchema($entity_type_id);
      };
      }
    }

    // Check that removing the module that provides the base table for a View,
+1 −1
Original line number Diff line number Diff line
@@ -280,7 +280,7 @@ public function entityFormAlter(array &$form, FormStateInterface $form_state, $f
        $form['#access'] = FALSE;
        continue;
      }
    };
    }
  }

  /**
Loading