diff --git a/src/Bundle/ChillMainBundle/Command/DetectTranslationDuplicatesCommand.php b/src/Bundle/ChillMainBundle/Command/DetectTranslationDuplicatesCommand.php index a1b0c6be5..0305ea700 100644 --- a/src/Bundle/ChillMainBundle/Command/DetectTranslationDuplicatesCommand.php +++ b/src/Bundle/ChillMainBundle/Command/DetectTranslationDuplicatesCommand.php @@ -78,7 +78,7 @@ class DetectTranslationDuplicatesCommand extends Command } // Detect values that appear in more than one key - $duplicates = array_filter($allTranslations, fn($keys) => count($keys) > 1); + $duplicates = array_filter($allTranslations, fn ($keys) => count($keys) > 1); $duplicatesHash = $this->generateDuplicatesHash($duplicates);