Fix php cs fixer

This commit is contained in:
Julie Lenaerts 2024-11-26 15:33:16 +01:00
parent 8f34c841f3
commit 0382f5ef61

View File

@ -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);