Skip to content

Commit

Permalink
Fix the typo in command name for command usage help text (#6108)
Browse files Browse the repository at this point in the history
  • Loading branch information
mohit-rocks authored Sep 10, 2024
1 parent 5985126 commit a92303e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Commands/field/FieldBaseOverrideCreateCommands.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down

0 comments on commit a92303e

Please sign in to comment.