From 0382f5ef61b9c5ec80af761898a49b66d9c077d4 Mon Sep 17 00:00:00 2001 From: Julie Lenaerts Date: Tue, 26 Nov 2024 15:33:16 +0100 Subject: [PATCH] Fix php cs fixer --- .../Command/DetectTranslationDuplicatesCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);