From 3c1a1ac56121bb4abf5bd40e90ffd225f999eaa9 Mon Sep 17 00:00:00 2001
From: Jon Minder <jonathan.minder@liip.ch>
Date: Fri, 31 Jan 2025 11:38:14 +0100
Subject: [PATCH] Drupal 11 compatibility fix

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

diff --git a/src/Form/SettingsForm.php b/src/Form/SettingsForm.php
index 13e13b4..cdbc3eb 100644
--- a/src/Form/SettingsForm.php
+++ b/src/Form/SettingsForm.php
@@ -18,7 +18,7 @@ use Symfony\Component\DependencyInjection\ContainerInterface;
 /**
  * Configure Frontend routing settings for this site.
  */
-final class SettingsForm extends ConfigFormBase {
+class SettingsForm extends ConfigFormBase {
 
   /**
    * {@inheritdoc}
@@ -29,7 +29,7 @@ final class SettingsForm extends ConfigFormBase {
     protected EntityTypeManagerInterface $entityTypeManager,
     protected EntityTypeBundleInfoInterface $entityTypeBundleInfo,
     protected AliasStorageHelperInterface $aliasStorageHelper,
-    protected TypedConfigManagerInterface $typedConfigManager,
+    TypedConfigManagerInterface $typedConfigManager,
   ) {
     parent::__construct($config_factory, $typedConfigManager);
   }
-- 
GitLab