From 647c712b0f45ace75773ec983a65874a4b4d2c20 Mon Sep 17 00:00:00 2001 From: Kul Pratap Singh <kulpratap98@gmail.com> Date: Tue, 4 Feb 2025 17:25:46 +0530 Subject: [PATCH] #Issue 3504217:Fix php fatal error. --- src/Form/BaseFormFields.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Form/BaseFormFields.php b/src/Form/BaseFormFields.php index e28168c..6c6f903 100644 --- a/src/Form/BaseFormFields.php +++ b/src/Form/BaseFormFields.php @@ -4,6 +4,7 @@ namespace Drupal\migrate_wizard\Form; use Drupal\Core\StringTranslation\TranslatableMarkup; use Drupal\Core\Config\ConfigFactoryInterface; +use Drupal\Core\Config\TypedConfigManager; use Drupal\Core\Entity\EntityTypeManagerInterface; use Drupal\Core\Form\ConfigFormBase; use Drupal\Core\Form\FormStateInterface; @@ -136,7 +137,7 @@ abstract class BaseFormFields extends ConfigFormBase { MWManageDataService $mw_manage_data_service, EntityTypeManagerInterface $entity_type_manager, MWManageFormService $manage_form_service, - protected $typedConfigManager = NULL) { + TypedConfigManager $typedConfigManager) { parent::__construct($config_factory, $typedConfigManager); $this->mwManageDataService = $mw_manage_data_service; -- GitLab