From 89fa10cede35b743112a2f2349d9d912b92dc3ed Mon Sep 17 00:00:00 2001 From: Julie Lenaerts Date: Mon, 18 Nov 2024 13:03:47 +0100 Subject: [PATCH] Change namespace for detect translation duplicate command --- .../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 a2038a309..5cae72853 100644 --- a/src/Bundle/ChillMainBundle/Command/DetectTranslationDuplicatesCommand.php +++ b/src/Bundle/ChillMainBundle/Command/DetectTranslationDuplicatesCommand.php @@ -23,7 +23,7 @@ use Symfony\Component\Console\Helper\Table; class DetectTranslationDuplicatesCommand extends Command { - protected static $defaultName = 'app:detect-duplicate-translations'; + protected static $defaultName = 'chill:detect-duplicate-translations'; public function __construct(private readonly TranslatorInterface $translator, private readonly KernelInterface $kernel) {