From cee7e2a0779340d0235b8dfca6369a8c0803afae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Sun, 5 Apr 2026 23:55:07 +0200 Subject: [PATCH] Fixed phpstan issues --- src/Form/Settings/TypeSynonymRowType.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Form/Settings/TypeSynonymRowType.php b/src/Form/Settings/TypeSynonymRowType.php index f3b8f0b6..ffff14fa 100644 --- a/src/Form/Settings/TypeSynonymRowType.php +++ b/src/Form/Settings/TypeSynonymRowType.php @@ -139,7 +139,7 @@ class TypeSynonymRowType extends AbstractType */ private function getPreferredLocales(): array { - $fromSettings = $this->localizationSettings->languageMenuEntries ?? []; + $fromSettings = $this->localizationSettings->languageMenuEntries; return !empty($fromSettings) ? array_values($fromSettings) : array_values($this->preferredLanguagesParam); }