From a92303e05bb7471216e07486d7a1defbf3ac414f Mon Sep 17 00:00:00 2001 From: Mohit Aghera Date: Tue, 10 Sep 2024 14:32:41 +0530 Subject: [PATCH] Fix the typo in command name for command usage help text (#6108) --- src/Commands/field/FieldBaseOverrideCreateCommands.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Commands/field/FieldBaseOverrideCreateCommands.php b/src/Commands/field/FieldBaseOverrideCreateCommands.php index b27f6e7d0f..3106d1198e 100644 --- a/src/Commands/field/FieldBaseOverrideCreateCommands.php +++ b/src/Commands/field/FieldBaseOverrideCreateCommands.php @@ -47,9 +47,9 @@ public function __construct( #[CLI\Option(name: 'field-description', description: 'The field description')] #[CLI\Option(name: 'is-required', description: 'Whether the field is required')] #[CLI\Option(name: 'show-machine-names', description: 'Show machine names instead of labels in option lists.')] - #[CLI\Usage(name: 'field:base-field-override-create', description: 'Create a base field override by answering the prompts.')] - #[CLI\Usage(name: 'field:base-field-override-create taxonomy_term tag', description: 'Create a base field override and fill in the remaining information through prompts.')] - #[CLI\Usage(name: 'field:base-field-override-create taxonomy_term tag --field-name=name --field-label=Label --is-required=1', description: 'Create a base field override in a completely non-interactive way.')] + #[CLI\Usage(name: 'field:base-override-create', description: 'Create a base field override by answering the prompts.')] + #[CLI\Usage(name: 'field:base-override-create taxonomy_term tag', description: 'Create a base field override and fill in the remaining information through prompts.')] + #[CLI\Usage(name: 'field:base-override-create taxonomy_term tag --field-name=name --field-label=Label --is-required=1', description: 'Create a base field override in a completely non-interactive way.')] #[CLI\Complete(method_name_or_callable: 'complete')] #[CLI\Version(version: '11.0')] public function baseOverrideCreateField(?string $entityType = null, ?string $bundle = null, array $options = [