From ef495f19512e1ee4e141da5e1203414f40f3723b Mon Sep 17 00:00:00 2001
From: catch <6915-catch@users.noreply.drupalcode.org>
Date: Wed, 1 Jan 2025 10:51:21 +0000
Subject: [PATCH] Issue #3487637 by dww: Move all system_update_N() methods
 next to each other

---
 core/modules/system/system.install | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/core/modules/system/system.install b/core/modules/system/system.install
index 3f595dfeb70a..54ff584efa54 100644
--- a/core/modules/system/system.install
+++ b/core/modules/system/system.install
@@ -1667,13 +1667,6 @@ function system_update_last_removed(): int {
   return 10201;
 }
 
-/**
- * Invalidate container because the module handler has changed.
- */
-function system_update_11100(): void {
-  \Drupal::service('kernel')->invalidateContainer();
-}
-
 /**
  * Display requirements from security advisories.
  *
@@ -1725,6 +1718,13 @@ function _system_advisories_requirements(array &$requirements): void {
   }
 }
 
+/**
+ * Invalidate container because the module handler has changed.
+ */
+function system_update_11100(): void {
+  \Drupal::service('kernel')->invalidateContainer();
+}
+
 /**
  * Update length of menu_tree fields url and route_param_key from 255 to 2048.
  */
-- 
GitLab