From 75ae8e3dd93d39e0f7c50db700520e50c3e32d98 Mon Sep 17 00:00:00 2001 From: Philipp Kitzberger Date: Tue, 13 Feb 2024 17:05:05 +0100 Subject: [PATCH] [CLEANUP] Command names --- Configuration/Services.yaml | 6 +++--- README.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Configuration/Services.yaml b/Configuration/Services.yaml index 9e660bb3..93ea2915 100644 --- a/Configuration/Services.yaml +++ b/Configuration/Services.yaml @@ -74,13 +74,13 @@ services: B13\Container\Command\FixLanguageModeCommand: tags: - name: 'console.command' - command: 'container:fixLanguageModeCommand' + command: 'container:fixLanguageMode' schedulable: false description: connect children of connected container if possible, else disconnect container B13\Container\Command\FixContainerParentForConnectedModeCommand: tags: - name: 'console.command' - command: 'container:fixContainerParentForConnectedModeCommand' + command: 'container:fixContainerParentForConnectedMode' schedulable: false description: tx_container_parent of children in connected mode should point to default language container B13\Container\Command\DeleteChildrenWithWrongPidCommand: @@ -92,7 +92,7 @@ services: B13\Container\Command\DeleteChildrenWithNonExistingParentCommand: tags: - name: 'console.command' - command: 'container:deleteChildrenWithNonExistingParentCommand' + command: 'container:deleteChildrenWithNonExistingParent' schedulable: false description: delete all child records with a non existing parent record (they are displayed as unsued) B13\Container\Command\IntegrityCommand: diff --git a/README.md b/README.md index 284ce715..2dca63f7 100644 --- a/README.md +++ b/README.md @@ -187,10 +187,10 @@ vendor/bin/typo3 container:sorting vendor/bin/typo3 container:sorting --apply 123 # ?? -bin/typo3 container:fixLanguageModeCommand -bin/typo3 container:fixContainerParentForConnectedModeCommand +bin/typo3 container:fixLanguageMode +bin/typo3 container:fixContainerParentForConnectedMode bin/typo3 container:deleteChildrenWithWrongPid -bin/typo3 container:deleteChildrenWithNonExistingParentCommand +bin/typo3 container:deleteChildrenWithNonExistingParent ``` ## TODOs / Proofments