From 7e4232106182f9858812e2acc3bdbd5842260177 Mon Sep 17 00:00:00 2001 From: Rom1-B Date: Wed, 4 Feb 2026 08:32:59 +0100 Subject: [PATCH] Fix(CI): rector --- src/Service/ConfigManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Service/ConfigManager.php b/src/Service/ConfigManager.php index 7ce6be8..b290b14 100644 --- a/src/Service/ConfigManager.php +++ b/src/Service/ConfigManager.php @@ -87,7 +87,7 @@ public function getEnabledQuestionsTypes(): array { return array_filter( $this->getConfigurableQuestionTypes(), - fn(ConfigurableItemInterface $c): bool => $this->isConfigurableItemEnabled($c), + $this->isConfigurableItemEnabled(...), ); }