From 43fe237226661793a144af63ec2aa7698324f456 Mon Sep 17 00:00:00 2001
From: Carsten Logemann <8947-C-Logemann@users.noreply.drupalcode.org>
Date: Sun, 19 Jan 2025 17:33:24 +0000
Subject: [PATCH] Fixed settings form incl. coding standard

---
 src/Form/BoostSettingsForm.php | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/Form/BoostSettingsForm.php b/src/Form/BoostSettingsForm.php
index a07127a..987d2da 100644
--- a/src/Form/BoostSettingsForm.php
+++ b/src/Form/BoostSettingsForm.php
@@ -63,13 +63,13 @@ class BoostSettingsForm extends ConfigFormBase {
    * @throws \Drupal\Component\Plugin\Exception\PluginException
    */
   public function __construct(
-      ConfigFactoryInterface $config_factory,
-      DateFormatterInterface $date_formatter,
-      FactoryInterface $plugin_factory,
-      EntityTypeManagerInterface $entity_type_manager,
-      BoostCacheFileInterface $boost_file
-    ) {
-    parent::__construct($config_factory);
+    ConfigFactoryInterface $config_factory,
+    DateFormatterInterface $date_formatter,
+    FactoryInterface $plugin_factory,
+    EntityTypeManagerInterface $entity_type_manager,
+    BoostCacheFileInterface $boost_file,
+  ) {
+    $this->configFactory = $config_factory;
     $this->dateFormatter = $date_formatter;
     $this->condition = $plugin_factory->createInstance('request_path');
     $this->entityTypeManager = $entity_type_manager;
-- 
GitLab