From ab9270e7617c538569e9b8475cd61e478de3df11 Mon Sep 17 00:00:00 2001 From: Brandon Ferens Date: Tue, 22 Oct 2024 09:07:47 -0700 Subject: [PATCH] Removed `js` shortcut --- src/Commands/GenerateEnumsCommand.php | 2 +- src/Commands/MakeEnumMethodCommand.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Commands/GenerateEnumsCommand.php b/src/Commands/GenerateEnumsCommand.php index 8c0ad3f..7324520 100644 --- a/src/Commands/GenerateEnumsCommand.php +++ b/src/Commands/GenerateEnumsCommand.php @@ -84,7 +84,7 @@ protected function getOptions(): array return [ new InputOption( name: 'javascript', - shortcut: ['j', 'js'], + shortcut: 'j', mode: InputOption::VALUE_NONE, description: 'Output Javascript files', ), diff --git a/src/Commands/MakeEnumMethodCommand.php b/src/Commands/MakeEnumMethodCommand.php index 3e74a91..d8a8819 100644 --- a/src/Commands/MakeEnumMethodCommand.php +++ b/src/Commands/MakeEnumMethodCommand.php @@ -131,7 +131,7 @@ protected function getOptions(): array return [ new InputOption( name: 'javascript', - shortcut: ['j', 'js'], + shortcut: 'j', mode: InputOption::VALUE_NONE, description: 'Output Javascript files', ),