From b183a32d11d714dd8218121b5b26df75f1c2ac46 Mon Sep 17 00:00:00 2001 From: Andrey Toropin Date: Thu, 19 Mar 2020 04:03:29 +0300 Subject: [PATCH] Fixed Laravel 6.8 conflict (#343) Co-authored-by: Andrey Toropin --- src/Console/SearchableModelMakeCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Console/SearchableModelMakeCommand.php b/src/Console/SearchableModelMakeCommand.php index eeb26e1..e786130 100644 --- a/src/Console/SearchableModelMakeCommand.php +++ b/src/Console/SearchableModelMakeCommand.php @@ -34,14 +34,14 @@ protected function getOptions() $options[] = [ 'index-configurator', - 'i', + null, InputOption::VALUE_REQUIRED, 'Specify the index configurator for the model. It\'ll be created if doesn\'t exist.', ]; $options[] = [ 'search-rule', - 's', + null, InputOption::VALUE_REQUIRED, 'Specify the search rule for the model. It\'ll be created if doesn\'t exist.', ];