From 1bfe333b269355108b2820ea97e41637d57716e0 Mon Sep 17 00:00:00 2001 From: halaei Date: Wed, 26 Oct 2016 15:08:13 +0330 Subject: [PATCH] Bugfix: An option with shortcut "q" already exists. --- src/Illuminate/Foundation/Console/ListenerMakeCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Foundation/Console/ListenerMakeCommand.php b/src/Illuminate/Foundation/Console/ListenerMakeCommand.php index d528ecfe826c..496f6abc49e0 100644 --- a/src/Illuminate/Foundation/Console/ListenerMakeCommand.php +++ b/src/Illuminate/Foundation/Console/ListenerMakeCommand.php @@ -116,7 +116,7 @@ protected function getOptions() return [ ['event', 'e', InputOption::VALUE_REQUIRED, 'The event class being listened for.'], - ['queued', 'q', InputOption::VALUE_NONE, 'Indicates the event listener should be queued.'], + ['queued', null, InputOption::VALUE_NONE, 'Indicates the event listener should be queued.'], ]; } }